Please help me, Im new in Maple. Dont you know how I can solve this?
Matrix(3, 3, {(1, 1) = 863138, (1, 2) = -332862, (1, 3) = -530302, (2, 1) = 1726276, (2, 2) = -665724, (2, 3) = -530302*m, (3, 1) = -863138, (3, 2) = -998586, (3, 3) = -1060604})
Vector(3, {(1) = 8, (2) = -8, (3) = -4*m})
Matrix = Vector and solve it depending on the parametr in Maple...please whole solutions, I have not already had linear algebra. Thank you.
Let's suppose that you are asking how to solve the system of linear equations
M . XYZ = VwhereMis your given Matrix,Vis your given Vector, andXYZis a Vector with entries as three variables. You can use Maple'sLinearAlgebrapackage as solve that system (without even needing to specifyXYZ, or you can form the three explicit equations and use Maple'ssolvecommand on those.First way,
And the linear system and solution
sol1can be put in terms of three variables,Now, another way, using three explicit equations,
Notice that
sol1andsol2agree. Note also that substitutingm=2into the resultreducabove would produce an inconsistent system where the 3rd row down represented the impossible0*x + 0*y + 0*z = -24.