Consider a simple plane equation
2x-3y+4z==7
I just want some position vector on that plane. For example, {7/2,0,0} would be great.
How can I ask Mathematica for 'some point' on this plane? The best I've got right now is:
Solve[plane && y == 0 && z == 0, x]
But I don't actually care what the values of y and z are, I just want some random point that satisfies the plane equation. Also that just returns the value of x - I want all three values in a vector (list?) form {a, b, c}.