i need to solve this equation

1 次查看(过去 30 天)
81^7-(x/27)^(2*x)=0

采纳的回答

madhan ravi
madhan ravi 2018-8-25
编辑:madhan ravi 2018-8-25
syms x
eqn = 81^7-(x/27)^(2*x)==0
x = vpasolve(eqn,x)
  3 个评论
madhan ravi
madhan ravi 2018-8-25
编辑:madhan ravi 2018-8-25
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
madhan ravi 2018-8-25
编辑:madhan ravi 2018-8-25
You can also thank me by giving a vote :)

请先登录,再进行评论。

更多回答(1 个)

Yuvaraj Venkataswamy
if true
eqn = 81^7-(x/27)^(2*x) == 0;
solx = solve(eqn, x)
end

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by