i need to solve this equation

조회 수: 11 (최근 30일)
Amjad Green
Amjad Green 2018년 8월 25일
편집: madhan ravi 2018년 8월 25일
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
Yuvaraj Venkataswamy 2018년 8월 25일
if true
eqn = 81^7-(x/27)^(2*x) == 0;
solx = solve(eqn, x)
end
  댓글 수: 1
Amjad Green
Amjad Green 2018년 8월 25일
it's giving me a strange answer

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Numeric Solvers에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by