Solve for x and y: Calculating Equations with Unknown Variables

  • Thread starter Thread starter rabihtawil
  • Start date Start date
  • Tags Tags
    Calculation
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 2K views
rabihtawil
Messages
10
Reaction score
0

Homework Statement



i have the answer for this i just don't know how it happened
Issue1:
2x+y+3=0
x= -3

Issue2:
x+2y-3=0
y=3

Homework Equations



How did they come up with this solution?

The Attempt at a Solution



I reread it & try to solve it no luck :(
 
Physics news on Phys.org
oh never mind i figured it out, it's a system of linear equation

2 1 3
1 2 -3

solve the system the above results will come up. thank you forum
 
You know how to solve matrices but not a system of 2 linear equations in 2 variables?
You have essentially started with the harder stuff and skipped the easier ones :bugeye:
 
My math skills are bad, I'm just working hard to pass these classes because I'm a computer science student. i finished all my major except 3 math courses which i am having the worst experience of my life in.
 
rabihtawil said:
oh never mind i figured it out, it's a system of linear equation

2 1 3
1 2 -3

solve the system the above results will come up. thank you forum
If you're working with an augment matix, it should be
Code:
[2 1 | -3]
[1 2 | 3]

The rows in this matrix come from these equations:
2x + y = -3
x + 2y = 3