Clear Filters
Clear Filters

how to solve a simultaneous equation of 2 variables.

119 views (last 30 days)
x+3y=5;2x+4y=4. In general maths, we can be able to find the values of 'x' and 'y' from the above equations. How to find it in MATLAB?

Accepted Answer

Walter Roberson
Walter Roberson on 30 Mar 2013
If you have the Symbolic toolbox,
syms x y
solve(x + 3*y - 5, 2*x + 4*y - 4)
  2 Comments
Sivakumaran Chandrasekaran
x: [1x1 sym]
y: [1x1 sym]. this is the answer which i got.. but i want to know the value of x and y.. no values are stored in workspace also

Sign in to comment.

More Answers (3)

Anand
Anand on 30 Mar 2013
A = [1 3;...
2 4;];
b = [5;...
4];
%Solve Ax=b as A\b
X = A\b
>> A\b
ans =
-4
3

Ali Al-khadher
Ali Al-khadher on 14 Mar 2019
%{
ax+by=c....equ(1)
dx+ey=f....equ(2)
A=[a b;d e]
B=[c f]
sol=A/B
x=sol(1)
y=sol(2)
example
3x-9y=-42....equ(1)
2x+4y=2......equ(2)
%}
A = [3 -9;2 4]
b = [-42;2]
%Solve Ax=b as A\b
sol=A\b;
x=sol(1)
y=sol(2)
  1 Comment
Timothy Beckham
Timothy Beckham on 21 Jul 2021
Edited: Timothy Beckham on 21 Jul 2021
I am grateful for the solution. I was looking for something similar and came across this page. Thank you very much!

Sign in to comment.


SHREY VERMA
SHREY VERMA on 26 Aug 2021
You can use this file for solving 2, 3, 4 or more variable for solving linear equation, which may consist of real or complex number.

Tags

Products

Community Treasure Hunt

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

Start Hunting!