i need to solve this equation

 Accepted Answer

madhan ravi
madhan ravi on 25 Aug 2018
Edited: madhan ravi on 25 Aug 2018
syms x
eqn = 81^7-(x/27)^(2*x)==0
x = vpasolve(eqn,x)

3 Comments

thanks i also want to solve this if you can help log4(x^2+7x+12)-log4(x^2+4x)=4
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 on 25 Aug 2018
Edited: madhan ravi on 25 Aug 2018
You can also thank me by giving a vote :)

Sign in to comment.

More Answers (1)

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

Tags

Asked:

on 25 Aug 2018

Edited:

on 25 Aug 2018

Community Treasure Hunt

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

Start Hunting!