#Projectors and Idempotent Matrices
10 messages · Page 1 of 1 (latest)
- Wait patiently for a helper to come along.
- Once someone helps you, say thank you and close the thread with:
+close
- Feel free to nominate the person for helper of the week in #helper-nominations
- Do not ping the mods, unless someone is breaking the rules.
- If you're happy with the help you got here, and the server overall, you can contribute financially as well:
Suppose A = {{a, b}, {c, d}}. We have:
A^2 = {{a^2 + bc, b(a + d)}, {c(a + d), bc + d^2}}
We need A = A^2. So, we get a system:
a^2 + bc = a
b(a + d) = b
c(a + d) = c
bc + d^2 = d
First, let's look at the second equation.
b(a + d) = b
(b - 1)(a + d) = 0
So, either b = 1 or a + d = 0.
Same for the third equation: c = 1 or a + d = 0.
So, now I think you can just look at different cases.
a projector is necessarily idempotent
so that narrows down your search immediately
@hard sequoia
Yup.
That should be b(a+d-1) so b=0 or a+d=1
Ah, right! My bad.