MATLAB: How to solve two equations in one variable

equationvariables

How can i calculate the value of the variable (X) from these two equations, if i know the value of J and D

Best Answer

syms x;
J=
D=
eq=exp(-x)-52*x^3==J/D;%combine the equations yourself
vpasolve(eq,x);