Please let me know how to solve the question below:
1. Newton's method can be extended to matrix-functions as well. For example, given a square matrix A and a real number t, the matrix-exponential etA is defined via the Taylor series for the exponential function:
. . . . .etA=1+tA+2!(tA)2+3!(tA)3+4!(tA)4+...
Obviously, the matrix A must be square.
(a) Derive Newton's method for finding the root of an arbitrary matrix-valued function f=f(X), where by "root" we mean that X is a root of f if f(X)=0, where 0 is the matrix of all zeroes. Assume that the matrix arguments of f are square and invertible.
(b) The square root of a matrix A is a matrix X such that XTX=A. For a symmetric, positive-definite matrix A, derive the Newton iteration for finding \(\displaystyle X= \sqrt{\strut A\,}.\)
(c) Write a program using the Newton iteration you derived above to find the square root of the matrix below:
. . . . .A=⎝⎜⎜⎜⎛8421484224841248⎠⎟⎟⎟⎞
The stopping criterion for your Newton iteration should be when the absolute difference between elements of successive iterations is at most 10−10.
1. Newton's method can be extended to matrix-functions as well. For example, given a square matrix A and a real number t, the matrix-exponential etA is defined via the Taylor series for the exponential function:
. . . . .etA=1+tA+2!(tA)2+3!(tA)3+4!(tA)4+...
Obviously, the matrix A must be square.
(a) Derive Newton's method for finding the root of an arbitrary matrix-valued function f=f(X), where by "root" we mean that X is a root of f if f(X)=0, where 0 is the matrix of all zeroes. Assume that the matrix arguments of f are square and invertible.
(b) The square root of a matrix A is a matrix X such that XTX=A. For a symmetric, positive-definite matrix A, derive the Newton iteration for finding \(\displaystyle X= \sqrt{\strut A\,}.\)
(c) Write a program using the Newton iteration you derived above to find the square root of the matrix below:
. . . . .A=⎝⎜⎜⎜⎛8421484224841248⎠⎟⎟⎟⎞
The stopping criterion for your Newton iteration should be when the absolute difference between elements of successive iterations is at most 10−10.
Attachments
Last edited by a moderator: