A = [1, 0, 1; 0, 1, 1]
B = [a, b; c, d; e, f]
A*B*A = [a + e, b + f, a + b + e + f; c + e, d + f, c + d + e + f] = [1, 0, 1; 0, 1, 1]
a + e = 1
b + f = 0
a + b + e + f = 1 automatisch erfüllt
c + e = 0
d + f = 1
c + d + e + f = 1 automatisch erfüllt
Ich wähle e und f als Freiheitsgrad und erhalte
a = 1 - e
b = -f
c = -e
d = 1 - f
B = [1 - e, -f; -e, 1 - f; e, f]
Die Zusatzaufgabe sollte dir jetzt nicht mehr so schwer fallen. Bilde A*B und B*A und schaue welche symmetrisch sind.