1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
liberstina [14]
3 years ago
5

[ MATLAB] Check some linear algebra rules: Enter the following matrices:

Mathematics
1 answer:
lana66690 [7]3 years ago
3 0

Answer:

Step by step explanation along with Matlab code and output is provided below.

Step-by-step explanation:

We are given three matrices A, B, and C of size 2x2

A = [0 1; 0 0]

B =[1 2; -3 -6]

C =[4 -2; -2 1]

Output:

A =  0     1

     0     0

B =  1     2

    -3    -6

C =   4    -2

    -2     1

Let us first check if the given matrices A, B, and C are singular or not

% the Matlab function det( ) calculates the determinant of a matrix

det_A=det(A)

det_B=det(B)

det_C=det(C)

Output:

det_A =  0

det_B =  3.3307e-16  (its practically zero)

det_C =  0

So the given matrices are singular which means that the determinant of the matrix is zero so inverse of these matrices is not possible.

Rule I:

a1=B*C

Output:

a1 =  0     0

      0     0

In Matrix theory, if BC=0 then B=0 or C=0 doesn't hold true

For matrices B*C=0 does not imply that either B or C is zero matrix but rather it implies that at least one of them is singular. In this case we know that both B and C are singular matrices therefore, BC=0  

Rule II:

a2=A^2

Output:

a2=  0     0

      0     0

In Matrix theory, if A^2=0 then A=0 doesn't hold true

For matrices A^2=0 does not imply that A is zero matrix but rather it implies that A is singular. We already know that A is singular therefore, A^2=0

Rule III:

a3_L=(A+B)^2

a3_R=A^2+2*A*B+B^2

Output:

a3_L =    -8   -15

            15    27

a3_R =   -11   -22

             15    30

In Matrix theory, (A + B)^2 = A^2 + 2AB + B^2 doesn't hold true.

(A + B)^2 = A^2 + 2AB + B^2 might hold true if AB = BA,  but generally, AB≠BA in matrix algebra.

Rule IV:  

a4_L=(A-B)*(A+B)

a4_R=A^2-B^2

Output:

a4_L =     2     3

            -15   -27

a4_R =    5    10

            -15   -30

In Matrix theory, (A-B)(A+B)  = A^2-B^2  doesn't hold true.

Rule V:    

a5_L=A*(B+C)

a5_R=A*B+A*C

Output:

a5_L =    -5    -5

              0     0

a5_R =   -5    -5

              0     0

In Matrix theory, A(B+C) =  AB+AC  holds true.

Rule VI:    

a6_L=A*(B+C)

a6_R=B*A+C*A

Output:

a6_L =    -5    -5

              0     0

a6_R =    0     5

              0    -5

In Matrix theory, A(B+C) =  BA+CA  doesn't hold true.

on a side note;  (B+C)A =  BA+CA holds true

Rule VII:  

a7_L=(A*B)^2

a7_R=A^2*B^2

Output:

a7_L =     9    18

              0     0

a7_R =     0     0

              0     0

In Matrix theory, (AB)^2  =A^2*B^2   doesn't hold true.

(AB)^2  =A^2*B^2   might hold true if and only if  BA=AB  which is not true in general.  

You might be interested in
The graph shows a transformation of circle M to circle N. Which statement describes the transformation of circle M to circle N?
d1i1m1o1n [39]

Answer:

C

Step-by-step explanation:

Got it right on ed 2021

3 0
3 years ago
Which of the sets of ordered pairs represents a function? (1 point)
erastova [34]
The answer is only P
3 0
3 years ago
Simplify. 9y - 8y - y =
olga nikolaevna [1]
9y-8y-y= 9-8-1 = 0y =0

subtract all like terms
8 0
3 years ago
Y=3x-5 y=-6x+4 system of equations
slega [8]
X=1, y=-2--------------------------
6 0
3 years ago
Find the slope of the line that passes through (8, 4) and (2, 9).
Alekssandra [29.7K]
The answers is not -5/6
5 0
3 years ago
Other questions:
  • Which number(s) below belong to the solution set of the inequality? Check all that apply. 9x >_117   A. 6 B. 8 C. 12 D. 14 E.
    8·1 answer
  • A bag has 2 blue marbles, 3 red marbles, and 5 white marbles. Which events have a probability greater than 1/5? Check ALL that a
    10·1 answer
  • A test is worth 50 points. Multiple-choice questions are worth 1 point, and short-answer questions are worth 3 points. If the te
    15·1 answer
  • 21. The Johnsons framed a family picture to hang on the wall. The perimeter of the frame is 72 inches. Use the formula P = 2 l +
    7·2 answers
  • EXPLAIN why the section of the Venn diagram for squares intersects with both the section for rhombuses and the section for recta
    13·2 answers
  • Stephan earns a base salary of $500 per month plus 10% commission for his monthly sales. If his commission rate is doubled, will
    14·2 answers
  • Ernesto is a sophomore at Bluepoint College. Last year, tuition was $9,820 per semester. This year, he paid 5% more. How much wa
    14·1 answer
  • I NEED HELP PLEASE! :)
    15·1 answer
  • HELP PLEASEEEEEEEEEEE
    7·1 answer
  • the perimeter of a rectangle is 40 cm. two of his sides measure 12.9 cm and 14.6 cm find the length of its third side.​
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!