Question: Solving a Linear System with Maple

I have solved the following linear system for 6 variables on Maple using the following code:

sys := {w = -2*Pi*i*k_2*v + 2*Pi*i*k_2*(4*K^2)/(5*Pi)*u, z = -2*Pi*i*k_1*v + 2*Pi*i*k_1*(4*K^2)/(5*Pi)*u, p*s*x = -2*Pi*i*k_1*u - 4*Pi^2*(k_1^2 + k_2^2)*x + a_1, p*s*y = -2*Pi*i*k_2*u - 4*Pi^2*(k_1^2 + k_2^2)*y + a_2, k_1*z + k_2*w = 0, k_1*x + k_2*y = 0}

solve(sys, [x, y, z, w, v, u])

However, the solution yields z = w = 0, I was wondering if this is correct as I feel that these quantities should not be 0 in the problem which I am studying, is there a way to find a solution which does not involve setting these two to 0?

.

Please Wait...