![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/814954/image.png)
System of linear equations
3 views (last 30 days)
Show older comments
Shimanto Sarker
on 27 Nov 2021
Answered: Abdelrhman Abdelfatah
on 27 Nov 2021
Draw the plot of the following equations in same graph,
System of linear equations with one solution (x+3y = 5, 2x-y = 17)
1 Comment
Abdelrhman Abdelfatah
on 27 Nov 2021
Here you go,
syms x y
y1=(1/3)*(5-x);
y2= 2*x-17
figure
fplot (y1,[0,50],'r')
title('System of Linear Equations')
xlabel('X value')
ylabel ('Y value')
grid on
hold on
fplot(y2,[0,50],'b')
hold off
legend ('Y1','Y2')
And here is the output graph
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/814954/image.png)
Accepted Answer
Abdelrhman Abdelfatah
on 27 Nov 2021
Check if this is what u wanted
syms x y
y1=(1/3)*(5-x);
y2= 2*x-17
figure
fplot (y1,[0,50],'r')
title('System of Linear Equations')
xlabel('X value')
ylabel ('Y value')
grid on
hold on
fplot(y2,[0,50],'b')
hold off
legend ('Y1','Y2')
And this is the output graph
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/814959/image.png)
0 Comments
More Answers (0)
See Also
Categories
Find more on Calculus 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!