I want to solve the following equation: log(log(y))=1/(x**2), and I want to get y as a function of x. How can I make a program in phyton in order to to this?
Thank you in advance!
I want to solve the following equation: log(log(y))=1/(x**2), and I want to get y as a function of x. How can I make a program in phyton in order to to this?
Thank you in advance!
By rearrangement, y = exp(exp(x ** -2))
will do it.
Note that this is a very strong function of x
. Are you sure your starting equation is correct? (The log10 log10 of the number of particles in the universe is less than 2).