(1). f(u+v) = f(u) + f(v) (1) (2). f(cu) = cf(u). (2)
The second property also applies, because if you multiply the vector by a scalar the result will be parallel to the original vector.
So, when you rotate the vector A it will be parallel to the same line
as the vector rotated without multiplying the vector A by a scalar. The magnitude will be the same for either method. Since magnitude is not changed during rotation, it will be the same if you multiply it by a scalar before or after the rotation.
b). Show that the column-vectors in the standard matrix A of f are pairwise orthogonal and their lengths are equal to 1.
We can write the standard matrix, T, for any linear transformation as [T] = [T(v1) | T(v2) | T(v3)], where v1, v2, v3 are standard basis vectors. Standard basis vectors are defined as the vectors of length 1 along the coordinate axes. The coordinate axes are always pairwise orthogonal. The column-vectors, T(v1), T(v2), T(v3), are transformed basis vectors. If we apply the linear transformation [T] to the standard basis vectors, they will remain pairwise orthogonal because each vector is rotated through the same angle around the same axis. Their lengths do not change because [T] is a simple rotation. So, the column-vectors of the standard matrix are pairwise orthogonal and their
lengths are all 1.
2. Find the standard matrix of the linear transformation of R3 which reflects every vector V about the plane
p=v-w p=(x-ka,y-kb,z-kc) p·(a,b,c) = 0 (x-ka,y-kb,z-kc)·(a,b,c) = 0 ax-ka2 + by-kb2 + cz - kc2 = 0 (ax + by + cz) - k(a2+b2+c2) = 0 (ax + by + cz) = k(a2+b2+c2) k = (ax + by + cz)/(a2+b2+c2) q = v-2k(a,b,c) q = (x-2ka, y-2kb, z-2kc) put as a function, f(V) = (x-2a(ax + by + cz)/(a2+b2+c2), y-2b(ax + by + cz)/(a2+b2+c2), z-2c(ax + by + cz)/(a2+b2+c2))
A := | [ 1-2a2 / %1 | -2ba / %1 | -2ca / %1 ] |
[ -2ba / %1 | 1-2b2 / %1 | -2cb / %1 ] | |
[ -2ca / %1 | -2cb / %1 | 1-2c2 / %1 ] |
%1 := a2 + b2 + c2