i need to solve this equation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Amjad Green
el 25 de Ag. de 2018
Editada: madhan ravi
el 25 de Ag. de 2018
81^7-(x/27)^(2*x)=0
0 comentarios
Respuesta aceptada
madhan ravi
el 25 de Ag. de 2018
Editada: madhan ravi
el 25 de Ag. de 2018
syms x
eqn = 81^7-(x/27)^(2*x)==0
x = vpasolve(eqn,x)
3 comentarios
madhan ravi
el 25 de Ag. de 2018
Editada: madhan ravi
el 25 de Ag. de 2018
Read the link below:
1) Type mupad in command window.
2) On the right bottom corner:
1) select solve instead of General math.
2) And click numeric option from it type the red line.
3) Press enter to run the code.
madhan ravi
el 25 de Ag. de 2018
Editada: madhan ravi
el 25 de Ag. de 2018
You can also thank me by giving a vote :)
Más respuestas (1)
Yuvaraj Venkataswamy
el 25 de Ag. de 2018
if true
eqn = 81^7-(x/27)^(2*x) == 0;
solx = solve(eqn, x)
end
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!