I have a linear system with three equations:
x1- 2x2 + x3 = 0
2x2 - 8x3 = 8
-4x1 + 5x2 + 9x3 = -9
The solution set is (29, 16, 3), which is a point at the intersection of these planes.
Hoping if anyone can plot these planes in a 3D-space using Matplotlib to visualize the problem clearly.
Your third equation says:
-4x + 5y + 9z - 9 = 0
or in general an equation of yours is
a x + b y + c z + d = 0
The normal is (a, b, c)
You plug this into the plotting library that takes a normal vector and a point on the plane, and do this 3 times (one for each plane).