Matrix Questions: Solve A^3, C^2003, f(A), e^C & Square Roots of A

  • Thread starter Thread starter niteshadw
  • Start date Start date
  • Tags Tags
    Matrix
Click For Summary

Homework Help Overview

The discussion revolves around various matrix operations, including computing powers of matrices, matrix exponentials, and finding square roots of matrices. The matrices involved are defined with specific entries, and participants are seeking guidance on how to approach these calculations.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning

Approaches and Questions Raised

  • Participants discuss the process of calculating A^3 and C^2003, with some noting the properties of diagonal matrices that may simplify calculations. There are inquiries about the matrix exponential e^C and how to apply the Taylor series definition. The square root of a matrix is also examined, with suggestions to explore general forms and identify elements through squaring.

Discussion Status

Participants are actively engaging with the problems, offering insights into potential methods for calculating matrix powers and exponentials. Some have provided partial guidance on how to approach the square root problem, while others are questioning the assumptions and methods needed for these calculations. No consensus has been reached, but there is a collaborative effort to explore the topics.

Contextual Notes

Some participants express uncertainty about their prior knowledge of matrix operations, indicating a lack of formal instruction on certain topics, such as matrix powers and square roots. This context suggests that the discussion is aimed at clarifying foundational concepts in matrix algebra.

niteshadw
Messages
20
Reaction score
0
(1)
Let
A =
2 0
4 1

B =
2 0 −4
3 −2 6

C =
5 0 0
0 −1 0
0 0 0

and let f(t) = t^2 - 5t + 2. Compute the following if possible.

(a) A^3
(b) C^2003
(e) f(A)
(g) We define the matrix exponential by the Taylor series:

e^C = I + C + 1/2! * C^2 + 1/3! * C^3 + · · · + 1/n! * Cn + · · · .

Calculate e^C

(2)
An n × n matrix S (with real entries) is called a square root of the n × n matrix A (with real entries), if S2 = A.

Find the square roots of the matrix
A=
1 3
0 1

========================

I don't have an idea on how to do the problems just posted, I can do the rest and those that I did not post, but I never learned #2 and I don't know how to take powers of matrix nor recall series. Would anyone be kind enough to explain how to do these problems. It would be very much appreciated. Thank you.
 
Physics news on Phys.org
niteshadw said:
(1)
(a) A^3
(b) C^2003
(e) f(A)
(g) We define the matrix exponential by the Taylor series:

e^C = I + C + 1/2! * C^2 + 1/3! * C^3 + · · · + 1/n! * Cn + · · · .

Calculate e^C

(2)
An n × n matrix S (with real entries) is called a square root of the n × n matrix A (with real entries), if S2 = A.

Find the square roots of the matrix
A=
1 3
0 1

========================

I don't have an idea on how to do the problems just posted, I can do the rest and those that I did not post, but I never learned #2 and I don't know how to take powers of matrix nor recall series. Would anyone be kind enough to explain how to do these problems. It would be very much appreciated. Thank you.
Well if you know matrix multiplication, 1a shouldn't be a problem. Calculate:

[tex] \left( {\begin{array}{*{20}c}<br /> 2 & 0 \\<br /> 4 & 1 \\<br /> <br /> \end{array} } \right) \cdot \left( {\begin{array}{*{20}c}<br /> 2 & 0 \\<br /> 4 & 1 \\<br /> <br /> \end{array} } \right) \cdot \left( {\begin{array}{*{20}c}<br /> 2 & 0 \\<br /> 4 & 1 \\<br /> <br /> \end{array} } \right)[/tex]

The power 2003 seems horrible, but C is a diagonal matrix and that has a handy property for powers. This should make 1b and 1g possible.

[tex] \left( {\begin{array}{*{20}c}<br /> a & 0 & 0 \\<br /> 0 & b & 0 \\<br /> 0 & 0 & c \\<br /> <br /> \end{array} } \right)^n = \left( {\begin{array}{*{20}c}<br /> {a^n } & 0 & 0 \\<br /> 0 & {b^n } & 0 \\<br /> 0 & 0 & {c^n } \\<br /> <br /> \end{array} } \right)[/tex]

For 1e, simply follow the instructions. I assume the constant will have to be multiplied with the unity matrix.

[tex] f\left( A \right) = A^2 - 5A + 2 = \left( {\begin{array}{*{20}c}<br /> 2 & 0 \\<br /> 4 & 1 \\<br /> <br /> \end{array} } \right)^2 - 5\left( {\begin{array}{*{20}c}<br /> 2 & 0 \\<br /> 4 & 1 \\<br /> <br /> \end{array} } \right) + 2\left( {\begin{array}{*{20}c}<br /> 1 & 0 \\<br /> 0 & 1 \\<br /> <br /> \end{array} } \right)[/tex]

For 2, you know you have to start with a 2x2 matrix. Take a general one, take the square and identify the elements. This will give a fairly easy system.

[tex] \left( {\begin{array}{*{20}c}<br /> 1 & 3 \\<br /> 0 & 1 \\<br /> <br /> \end{array} } \right) = \left( {\begin{array}{*{20}c}<br /> a & b \\<br /> c & d \\<br /> <br /> \end{array} } \right)^2 = \left( {\begin{array}{*{20}c}<br /> a & b \\<br /> c & d \\<br /> <br /> \end{array} } \right) \cdot \left( {\begin{array}{*{20}c}<br /> a & b \\<br /> c & d \\<br /> <br /> \end{array} } \right) = \left( {\begin{array}{*{20}c}<br /> {a^2 + bc} & {ab + bd} \\<br /> {ac + cd} & {bc + d^2 } \\<br /> <br /> \end{array} } \right)[/tex]
 
You know how to multiply matrices together right? That's all powers are, A^2=AxA, A^3=AxAxA, etc. (the little "x" meaning "times" here)

For the huge power C^2003, find C^2, C^3, C^4, ... as many as you need to until you see a pattern. You should be able to write a nice general expression for C^n, which will help for part (g).

For part (g), use your expression for C^n to write each entry of e^C as an infinite sum. The usual series for e^x where x is a real number is the same as the one they've given for e^C with C's and x's interchanged, so you should be able to write e^C in a nice form using this.


For the square root question, this will seem like a lame suggestion but it doesn't look like you're expected to know a general method to compute the square root of a matrix (when it exists). So try to guess an S that works here. Maybe computing some powers of A will give you some inspiration.
 
TD said:
Well if you know matrix multiplication, 1a shouldn't be a problem. Calculate:

[tex] \left( {\begin{array}{*{20}c}<br /> 2 & 0 \\<br /> 4 & 1 \\<br /> <br /> \end{array} } \right) \cdot \left( {\begin{array}{*{20}c}<br /> 2 & 0 \\<br /> 4 & 1 \\<br /> <br /> \end{array} } \right) \cdot \left( {\begin{array}{*{20}c}<br /> 2 & 0 \\<br /> 4 & 1 \\<br /> <br /> \end{array} } \right)[/tex]

The power 2003 seems horrible, but C is a diagonal matrix and that has a handy property for powers. This should make 1b and 1g possible.

[tex] \left( {\begin{array}{*{20}c}<br /> a & 0 & 0 \\<br /> 0 & b & 0 \\<br /> 0 & 0 & c \\<br /> <br /> \end{array} } \right)^n = \left( {\begin{array}{*{20}c}<br /> {a^n } & 0 & 0 \\<br /> 0 & {b^n } & 0 \\<br /> 0 & 0 & {c^n } \\<br /> <br /> \end{array} } \right)[/tex]

For 1e, simply follow the instructions. I assume the constant will have to be multiplied with the unity matrix.

[tex] f\left( A \right) = A^2 - 5A + 2 = \left( {\begin{array}{*{20}c}<br /> 2 & 0 \\<br /> 4 & 1 \\<br /> <br /> \end{array} } \right)^2 - 5\left( {\begin{array}{*{20}c}<br /> 2 & 0 \\<br /> 4 & 1 \\<br /> <br /> \end{array} } \right) + 2\left( {\begin{array}{*{20}c}<br /> 1 & 0 \\<br /> 0 & 1 \\<br /> <br /> \end{array} } \right)[/tex]

For 2, you know you have to start with a 2x2 matrix. Take a general one, take the square and identify the elements. This will give a fairly easy system.

[tex] \left( {\begin{array}{*{20}c}<br /> 1 & 3 \\<br /> 0 & 1 \\<br /> <br /> \end{array} } \right) = \left( {\begin{array}{*{20}c}<br /> a & b \\<br /> c & d \\<br /> <br /> \end{array} } \right)^2 = \left( {\begin{array}{*{20}c}<br /> a & b \\<br /> c & d \\<br /> <br /> \end{array} } \right) \cdot \left( {\begin{array}{*{20}c}<br /> a & b \\<br /> c & d \\<br /> <br /> \end{array} } \right) = \left( {\begin{array}{*{20}c}<br /> {a^2 + bc} & {ab + bd} \\<br /> {ac + cd} & {bc + d^2 } \\<br /> <br /> \end{array} } \right)[/tex]

Thank you very much for the explanation. I admit the A^3 wa a pretty bad question, I was concentrating on the power to 2003; but I did that and now thanks to your help I'll hope to do 2003. The professor did not manage to mention any of these explanations - we don't even have a book for linear but instead notes...

shmoe said:
For part (g), use your expression for C^n to write each entry of e^C as an infinite sum. The usual series for e^x where x is a real number is the same as the one they've given for e^C with C's and x's interchanged, so you should be able to write e^C in a nice form using this.


For the square root question, this will seem like a lame suggestion but it doesn't look like you're expected to know a general method to compute the square root of a matrix (when it exists). So try to guess an S that works here. Maybe computing some powers of A will give you some inspiration.

Thanks, I'll give it a try and no, I never seen anything that dealt with the square root of a matrix...
 
how to do the square of 3×3 matrix?
please reply me with full method
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 14 ·
Replies
14
Views
2K
Replies
3
Views
1K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 21 ·
Replies
21
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
Replies
42
Views
4K