Having trouble inverting a simple math equation using logarithms in Python

Advertisements After trying to reverse a very simple math formula for the past day, I’ve given up after bumping my head against scipy.special.lambertw — which might not even be the correct place to be looking. I have the following equation: import numpy # The following == 70.03 np.sqrt(np.log(742) * 742) I’m trying to invert that… Read More Having trouble inverting a simple math equation using logarithms in Python