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 ratio of roses to carnations to daisies in
Leto [7]

Answer:

10

Step-by-step explanation:

10 10 10 1010 10 101 10 10 1o

4 0
3 years ago
400 lbs = ? Tons and 38,600 mg = ? dekagrams
garik1379 [7]
400 lbs = 0.2 tons

38,600 mg = 3.86 dekagrams

Hope it helps!
3 0
3 years ago
What is the frequency of d=9cos(pi/2 t)
patriot [66]
The period is equal to 2pi/n, where n is the coefficient of t. In this case pi/2. Therefore the period in this example is 4. Frequency is equal to 1/period. Hence the frequency for this problem is 1/4
5 0
3 years ago
What is the slope of the line that contains the points (-4,2) and (6,-3)?-
schepotkina [342]

Answer:

c

Step-by-step explanation:

the formula is \frac{y_{2}-y_{1} }{x_{2} -x_{1}}

When we plug that in we get \frac{-3-2}{6- (-4)} = \frac{-5}{10} = -\frac{1}{2}

Hope this helps!

8 0
3 years ago
Can someone help me please
Sergeeva-Olga [200]

Answer:

Step-by-step explanation:

8 0
3 years ago
Read 2 more answers
Other questions:
  • 2(3C + 2d) =<br><br><br> I don’t understand
    5·2 answers
  • I don’t really understand this question Please help!!!
    5·1 answer
  • Derman says, "I'm halfway through reading my book.if I read another 84 pages, I'll be two thirds of the way through my book." ho
    13·1 answer
  • Distribute the expression. <br><br> 6(3r2 – 4r + 7)
    11·2 answers
  • What is the difference between discrete and continuous data? (Bar charts)
    9·1 answer
  • CAN SOME ONE HELP ME WITH THIS HURRY PLEASE
    7·1 answer
  • zach's bird feeder holds 3/4 cup of birdseed. Zach is filling the bird feeder with a scoop that holds 3/8 of a cup. how many sco
    15·2 answers
  • What is 24.40% 37.60% 7/25 and 3/10 ordered from least to greatest
    13·2 answers
  • Which fraction is equivalent to 1.18?
    5·2 answers
  • PLEASE HELP, WILL MARK BRAINLIEST
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!