MATLAB: I want to solve this equation in a symbolic form to get the value of j

equation

But the 160,150,205,24 will also be symbols where L1=160,L7=150,x=205,y=24 thank u.

Best Answer

>> syms J
l=160;l7=150;x=205;y=24
eq1=l7*((1-J^2)^0.5)+l*((1-(l7*J+y/l)^2)^0.5)-x==0;
SOLUTION=vpasolve(eq1,J)
y =
24
SOLUTION =
0.0052603763453706094021644411862505
>>