This is my first post here so I'm not really sure how all of this works, but I'll try my best to explain my problem. I'm supposed to solve the equation system
ax + y + az = 2
x + ay + z = 2
x + az = 1
and then answer "for which values on a does the equation system only have one solution? For which values on a do we have an infinite amount of solutions, and what value on a lacks solutions."
I understand that I'm supposed to use solve, but I'm not exactly sure how. My current code is
Solve[{a*x + y + a*z == 2, x + a*y + z == 2, x + a*z == 1}, x, y, z]
But it just throws an error with z, so I understand that the condition at the end must be changed, but I don't know to what.
Solvemust be a list. That is,{x,y,z}, rather thanx,y,z.This will give you the solution. I propose that you take a look at the documentation. To answer about the infinite number of solutions check Menu/WolframDocumentation/Det and apply the corresponding theorem. – Alexei Boulbitch Nov 03 '18 at 16:21