snesnerd said:
I have to find the cosine of the following:
| 1 0 |
| 2 2 |
This is a 2 by 2 matrix. I have been reading my linear algebra book for awhile now, and theirs no information at all on how do to something like this. Not sure how to find the cosine of a matrix. Could not really find any pages online either.
Besides what has already been suggested, here is another way: for an nxn matrix A whose eigenvalues ##r_1, r_2, \ldots, r_n## are all distinct, there exist matrices ##E_1, E_2, \ldots, E_n## such that for any analytic function f(x) we have
f(A) = E_1 f(r_1) + E_2 f(r_2) + \cdots + E_n f(r_n), In your case you have two eigenvalues (1 and 2), so f(A) = E1*f(1) + E2*f(2). You can easily determine E1 and E2 by applying this to the two functions f(x) = 1 = x^0 (giving f(A) = I, the identity matrix) and f(x) = x (giving f(A) = A). That is we have
I = E_1 \, 1^0 + E_2 \, 2^0 = E_1 + E_2,\\<br />
A = E_1 \, 1 + E_2 \, 2 = E_1 + 2E_2, and solving gives
E_1 = \pmatrix{1&0\\-2&0}, \: E_2 = \pmatrix{0&0\\2&1}. Thus,
\cos(A) = E_1 \, \cos(1) + E_2 \, \cos(2).
Note that we have f(A) = E1*f(1) + E2*f(2), so, for example, we have lots of other results, like
A^{100} = E_1 1^{100} + E_2 2^{100}\\<br />
A^n = E_1 + E_2 2^n \\<br />
e^{At} = E_1 e^{1t} + E_2 e^{2t}, \: \text{ etc.}
RGV