You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
x + y + z = 1 // eq1: matched x
x + y - z = 2 // eq2: matched y
x - y + z = 3 // eq3: matched z
Explicitating eq1 with respect to x would give x = - y - z + 1
But the substitution within eq2 would yield to - y - z + 1 + y - z = 2
Which is equivalent to 0y - 2z + 1 = 0
And would lead to the division by 0 y = (2z - 1) / 0
The system, however, is trivially solvable with x = 5/2, y = -1, z = -1/2
The text was updated successfully, but these errors were encountered:
Considering the system of equations:
Explicitating eq1 with respect to x would give
x = - y - z + 1
But the substitution within eq2 would yield to
- y - z + 1 + y - z = 2
Which is equivalent to
0y - 2z + 1 = 0
And would lead to the division by 0
y = (2z - 1) / 0
The system, however, is trivially solvable with
x = 5/2, y = -1, z = -1/2
The text was updated successfully, but these errors were encountered: