A = [1 2 3 4]
Solution:
f(A) = [2(1)^2 + 3 2(2)^2 + 3 2(3)^2 + 3 2(4)^2 + 3] = [5 11 21 35]
A = [1 2 3 4]
Solution:
f(A) = A^T = [1 3 2 4]
Example: Properties of Function of a Matrix (contd.)
Let A and B be matrices, and f(x) = 2x^2 + 3, where x is an element of matrix A
Compute f(A + B) and f(A) + f(B) `` A = [1 2 3 4]
B = [5 6
7 8]
Solution:
f(A + B) = f([6 8
10 12]) = [75 99
143 179]
f(A) + f(B) = [f(A)] + [f(B)] = [5 11 21 35] + [23 27 31 39] = [28 38 52 74] ``
11
12