I wanted to solve a triplet of simultaneous equations with python. I managed to convert the equations into matrix form below:
For example the first line of the equation would be
v0 = ps0,0 * rs0,0 + ps0,1 * rs0,1 + ps0,2 * rs0,2
+ y(ps0,0 * v0 + ps0,1 * v1 + ps0,2 *v2)
I am solving for v0,v1,v2. I came across linalg.solve from the numpy library however I am really lost at rearranging the matrices in the form given in their examples because I have v0,v1,v2 in a [3x1] on the left and a [3x3] on the right.

So answering my own question following the guidance of @spiraltotheleft
I have come up with:
This matrix can be obtained from moving the v's to the same side.