Back to problem set
Disclaimer: these are my personal solutions; they have not been
reviewed, so be careful relying on them as there might be errors. Some
competitions may have official solutions from the contest publishers which
you may wish to refer to instead if you’re looking for verified solutions.
Problem 3#
Find real numbers c1 and c2 so that
I+c1M+c2M2=(0000),
where M=(1032)
and I is the identity matrix.
Hints#
Hint #1
Can you simplify the given equation and see what you can do with it?
Hint #2
You have 2 unknowns (c1 and c2); can you come up with equations to
isolate their values, given I and M?
Solution#
Open to see the solution; try solving it first or see the hints
above!
First, let’s compute M2:
M2=(1032)2=(1032)(1032)=(1⋅1+3⋅00⋅1+2⋅01⋅3+3⋅20⋅3+2⋅2)=(1094)Now, let’s put this together into the complete equation:
I+c1M+c2M2(1001)+c1(1032)+c2(1094)(1001)+(c103c12c1)+(c209c24c2)(1+c1+c203c1+9c21+2c1+4c2)=(0000)=(0000)=(0000)=(0000)As a result, we have the following system of equations:
1+c1+c23c1+9c21+2c1+4c2=0=0=0(1)(2)(3)Taking equation (2), we have:
3c1+9c2c1+3c2c1=0=0=−3c2from (2) abovedivide both sides by 3solve for c1 (4)Now we can substitute c1=−3c2 into equations (1) and (3) to find
c2 and hopefully, they’re consistent!
1+c1+c21−3c2+c21−2c2121=0=0=0=2c2=c2from (1) abovesubstitute from (4) abovesimplifybring c2 to the other sidesolve for c2Let’s try the same with equation (3):
1+2c1+4c21+2(−3c2)+4c21+−2c2=0=0=0from (3) abovesubstitute from (4) abovesimplifyWe can stop here, as we’ve repeated the 3rd line from the previous solution, so
c2=21.
Now we know that c1=−3c2=−3⋅21=−23.
Thus, the solution is: c1=−23,c2=21.■