Given the equations
$x+3y+z+au=1$
$x+2y+az+u=1$
$2x+y+2z+3u=b$
$x+y+az+2u=a$
Determine the parameters $a$ and $b$ such that system of equations has a solution.
As far as I know for those system to have a solution determinant has to be non-zero, so I found values of $a$ for which determinant is 0, so a has to be a value different from those numbers. But what about parameter $b$ do I have to take that in account? Since it doesn't appear in coefficients.
2026-04-25 21:46:21.1777153581
System of equations with parameters
402 Views Asked by user354021 https://math.techqa.club/user/user354021/detail At
2
You gave the correct answer for $a$, concerning the determinant of the LHS Matrix ( let's call this matrix $\mathbf M$). When this determinant is nonzero, the system is invertible and you get for the vector of variables $\mathbf v$:
$$ \mathbf v = \mathbf M^{-1} (1, 1, b, a)^T $$
So there will always be a solution, regardless of $b$.