You cannot divide a vector by a vector:
Plane.Position = PlaneA.Position / PlaneB.Position;
However, you can multiply and divide a vector with a scaler ( = number ). This is done for every component:
Plane.Position = PlaneA.Position * 2;
PlaneB.Position = PlaneA.Position / 2;