I’ve been trying to find a way to solve this function for the first positive root. Solving this analytically seems to be above my high school education. Any and all help is greatly appreciated :)
The function is as follows:
$$\omega_i=\sqrt{\frac{N}{E\cdot I_i}} \ \ \ \ \ i=1,2$$
$$\cos(\omega_1 L_1)\sin(\omega_2L_2)+\sqrt{\frac{I_1}{I_2}}\sin(\omega_1L_1)\cos(\omega_2L_2)=0$$
All variables are constant except $N$.
I’ve attempted to use similar looking trigonometric identities such as $\sin(A+B)=\sin(A)\cos(B)+\cos(A)\sin(B)$ but I cant seem to find a way to take the square root into account.
Solving this function graphically is straight forward (Example here), but I need to implement it in excel. The built in goal seek function doesn’t automatically update and hits false positives often, thus I’ve decided to implement a root seeking function. I’m not allowed to find 3rd party libraries as per my IT departments demands.
Looking at the functions shape, I’m scared the Newton-Raphson method with find a different root. Is there a better root seeking algorithm for this problem?