Clear Filters
Clear Filters

3x-y+4=0 how to solve this equation in matlab

2 views (last 30 days)
Adam
Adam on 7 Oct 2022
Answered: Sam Chak on 8 Oct 2022
3x-y+4=0
  1 Comment
Star Strider
Star Strider on 7 Oct 2022
There are an infinity of solutions for one equation in two unknowns.

Sign in to comment.

Answers (1)

Sam Chak
Sam Chak on 8 Oct 2022
The given equation
can be rewritten in this familiar line equation form
You can substitute any real value into x and find y
If there is another curve that intersects with the line, then you can find a unique solution.
If there are two intersections, then there are two solutions.
x = -4:0.1:4;
y = 3*x + 4;
plot(x, y), grid on
xlabel('x'), ylabel('y')

Categories

Find more on Mathematics and Optimization in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!