I have two equations with two unknowns but they seem to be quite non-linear. They are of the form,
C1 = (A1) * ((10)^(B1 * x)) * ((D1 * y)^(E1))
C2 = (A2) * ((10)^(B2 * x)) * ((D2 * y)^(E2))
I would like to solve for x and y and the rest are all constants. I have tried using 'SymPy' and 'solve' but the code seems to be running forever.