solutions of equations

1 view (last 30 days)
Dwyane  Wade
Dwyane Wade on 15 Aug 2011
how do I find solution for the following problems? (this topic is under solutions of equations.)
1. e^4x-3e^2x=-2
2. tan^-1(x) + tan^-1(2x)=0
3. x-2y+3z=10; 2x-y-4z=8; 2x+y-z=15;
thank you for those who will help I'd really appreciate it.

Accepted Answer

Paulo Silva
Paulo Silva on 15 Aug 2011
We are providing you solutions but you don't seem to be understanding them (your matrix question shows it), please try to understand our answers before creating more questions (most of them similar), you don't learn to use MATLAB having others doing the code for you, I guess you are in school so your teachers will evaluate your knowledge, we won't be there to do the code for you!
Using the symbolic toolbox:
solve(sym('exp(4)*x-3*exp(2)*x=-2'))
solve(sym('atan(x) + atan(2*x)=0'))
s=solve(sym('x-2*y+3*z=10'), sym('2*x-y-4*z=8'),sym('2*x+y-z=15'));
double([s.x s.y s.z])' %from top to bottom x y z

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!