Statement 1: The product of two diagonal matrices of order 3 is also a diagonal matrix. Statement -2 : In general, matrix multiplication is non-commut

1 Answer

Answer :

Statement 1: The product of two diagonal matrices of order 3 is also a diagonal matrix. Statement -2 ... Statement -1 is false, statement -2 is true.

Related questions

Description : The minimum number of scalar multiplication required, for parenthesization of a matrix-chain product whose sequence of dimensions for four matrices is is (1) 630 (2) 580 (3) 480 (4) 405 

Last Answer : (4) 405 

Description : For stable structures, one of the important properties of flexibility and stiffness matrices is that the elements on the main diagonal (i) Of a stiffness matrix must be positive (ii) Of a stiffness matrix must be negative (iii) Of ... ) (B) (ii) and (iii) (C) (i) and (iv) (D) (ii) and (iv)

Last Answer : (A) (i) and (iii)

Description : Write a C program multiplication of two matrices?

Last Answer : // Write a C program Multiplication of Two Matrices. #include #include void main() { int a[25][25],b[25][25],c[25][25],i,j,m,n,k,r,s; clrscr(); printf("enter the rows and colums of A matrics:\n"); ... B matrics:\n"); scanf("%d%d",&r,&s); printf("\nenter the elements of A matrics"); for(i=0;i

Description : Is there a way to factor a matrix into two matrices with this special property? (see details)

Last Answer : My gut feeling is that this cannot be done. If it could, it would be such an extraordinary result that I am sure that I would have heard of it. I would think that in general integer matrices can not be factored as the product of integer matrices.

Description : Write a Numpy program to create a 3x3 identity matrix, i.e. non diagonal elements are 1, the rest are 0. Replace all 0 to random number from 1 to 10 -Technology

Last Answer : import numpy as npZ = np.arange(9).reshape(3,3)print (Z)x=np.where((Z%2)==0)for i in x:Z[x]=np.random.randint(low=10,high=20)print(Z)

Description : What is the size of the matrix obtained by multiplication ?

Last Answer : If A (mxn) is a matrix with m number of rows and n number of columns and B (pxq) is a matrix with p number of rows and q number of columns then A and B matrix will be multiplied if n = p and multiplication. When matrix AB ... \ sigma q + \ tau v & \ rho c + \ sigma r + \ tau w \ end {pmatrix}} \,.

Description : Which algorithm is used for matrix multiplication: a. Simple algorithm b. Specific algorithm c. Strassen algorithm d. Addition algorithm

Last Answer : c. Strassen algorithm

Description : ............... is often used to prove the correctness of a recursive function. (A) Diagonalization (B) Communitivity (C) Mathematical Induction (D) Matrix Multiplication

Last Answer : (C) Mathematical Induction

Description : Transpose of a column matrix is a.Zero matrix b.Identity matrix c.Row matrix d.Diagonal matrix

Last Answer : c.Row matrix

Description : Write a Numpy program to create a 3x3 identity matrix, i.e. diagonal elements are 1, the rest are 0. Replace all 0 to random number from 10 to 20 -Technology

Last Answer : import numpy as nparray1=np.identity(3)print(array1)x=np.where(array1==0)for i in x:array1[x]=np.random.randint(low=10,high=20)print(array1)

Description : Let A be a `2xx2` matrix with real entries. Let I be the `2xx2` identity matrix. Denote by tr (A), the sum of diagonal entries of A. Assume that `A^2=

Last Answer : Let A be a `2xx2` matrix with real entries. Let I be the `2xx2` identity matrix. Denote by tr (A) ... D. Statement -1 is false, statement -2 is true.

Description : Name the diagonal elements and off diagonal elements of bus impedance matrix.

Last Answer : The diagonal elements of bus impedance matrix are called driving point impedances of the buses and off diagonal elements of bus impedance matrix are called transfer impedances of the buses.

Description : Name the diagonal and off diagonal elements of bus admittance matrix.

Last Answer : The diagonal elements of bus admittance matrix are called self admittances of the buses and off diagonal elements are called mutual admittances of the buses.

Description : Which of the following is true about Stiffness matrix a. Diagonal matrix b. Symmetric matrix c. Positive Definite d. All of the above

Last Answer : d. All of the above

Description : The diagonal elements of a nodal admittance matrix are strengthened by adding :  (A) Shunt capacitors (C) Generators (B) Shunt inductances (D) Resistive loads

Last Answer : A

Description : If the order of matrices A, B and C are `3 xx 4, 7 xx 3 " and " 4 xx 7` respectively, then the order of (AC) B is _____.

Last Answer : If the order of matrices A, B and C are `3 xx 4, 7 xx 3 " and " 4 xx 7` respectively, then the order of (AC) B is _____.

Description : The product of two matrices, i.e., AB = I, then B is called the___ of A and written as____.

Last Answer : The product of two matrices, i.e., AB = I, then B is called the___ of A and written as____.

Description : Matrices like BCG Growth Share & GE Mckinsey Business Portfolio are use to evaluate___________________? A. Business Level Strategy B. Product Level Strategy C. Corporate Level Strategy D. Functional Level Strategy

Last Answer : Corporate Level Strategy

Description : Python : how to check if two arrays (matrices) have the same shape and elements -Web-Development

Last Answer : answer:

Description : Python : comparing two arrays (matrices) element-wise -Web-Development

Last Answer : answer:

Description : Write a C program addition of two matrices?

Last Answer : #include #include void main() { int a[25][25],b[25][25],c[25][25],i,j,m,n; clrscr(); printf("enter the rows and colums of two matrics:\n"); scanf("%d%d",&m,&n); printf("\nenter the elements of A matrics"); for(i=0;i

Description : The mass, stiffness, and damping matrices of a two-degree-of-freedom system are symmetric.

Last Answer : True

Description : Write a program for addition of two 3 x 3 matrices.

Last Answer : #include<stdio.h> #include<conio.h> void main() { int a[3][3],b[3][3],c[3][3],i,j; clrscr(); printf("Enter first matrix elements:\n"); for(i=0;i<3;i++) { for(j=0;j<3 ... (j=0;j<3;j++) { printf("%d\t",c[i][j]); } } getch(); }

Description : Matrices to solve a vector combination problem.

Last Answer : I am completely confused by your notation…

Description : Which of the following is NOT correct (A, B and C are matrices) a.A∙B = B∙A b.A∙B∙C = (A∙B) ∙C = A∙ (B∙C) c.C(A+B) = C∙A + C∙B d.1 A = A 1

Last Answer : a.A∙B = B∙A

Description : From the following, which one will require 4 matrices to multiply to get the final position? a.Rotation about the origin b.Rotation about an arbitrary Point c.Rotation about an arbitrary line d.Scaling about the origin

Last Answer : b.Rotation about an arbitrary Point

Description : Python : how can I concatenate scipy.sparse matrices? -Web-Development

Last Answer : answer:

Description : How do you multiply matrices?

Last Answer : The browser used by this site is not really designed for this answer but here's an attempt.Suppose A and B are matrices with dimensions pxq and qxr where p, q and r are positive integers.Then the (i, j)th term in ... all k, of ai,k*bk,j. where ai,k is the element in the ith row and kth column of A.

Description : Why is it difficult to use matrices on deciduous teeth, A. It hurts the kids’ parents B. The small mouth opening of kids in that age range makes it difficult to keep matrices in mouth. C. The occlusal concavity of deciduous teeth

Last Answer : . The occlusal concavity of deciduous teeth

Description : the difficulty of placing matrices on deciduous dentition is a result of, A. The small mouth of kids which result in problem keeping the matrices in their mouths B. The occlusal convergence of the deciduous teeth

Last Answer : B. The occlusal convergence of the deciduous teeth

Description : In the absence of parentheses, the order of operation is a) exponentiation, addition of subtraction, muliplication of division b) addition or subtraction, multiplication or division, ... subtraction d) exponentiation, multiplication or division, addition of subtraction e) None of these

Last Answer : d) exponentiation, multiplication or division, addition of subtraction

Description : Which algorithm includes repeated addition of two predetermined values A and S to a product P and then performs a rightward arithmetic shift on P. a. Booth’s algorithm b. Usual algorithm c. Multiplication algorithm d. None of these

Last Answer : a. Booth’s algorithm

Description : Diagonal AC of a parallelogram ABCD bisects ∠A (see Fig. 8.19). Show that (i) it bisects ∠C also, (ii) ABCD is a rhombus. -Maths 9th

Last Answer : . Solution: (i) In ΔADC and ΔCBA, AD = CB (Opposite sides of a parallelogram) DC = BA (Opposite sides of a parallelogram) AC = CA (Common Side) , ΔADC ≅ ΔCBA [SSS congruency] Thus, ∠ACD = ∠CAB by ... are equal) Also, AB = BC = CD = DA (Opposite sides of a parallelogram) Thus, ABCD is a rhombus.

Description : Diagonal AC of a parallelogram ABCD bisects ∠A (see figure). Show that (i) it bisects ∠C also, (ii) ABCD is a rhombus -Maths 9th

Last Answer : (i) Here, ABCD is a parallelogram and diagonal AC bisects ∠A. ∴ ∠DAC=∠BAC ---- ( 1 ) Now, AB∥DC and AC as traversal, ∴ ∠BAC=∠DCA [ Alternate angles ] --- ( 2 ) AD∥BC and AAC as traversal, ∴ ∠DAC= ... ---- ( 2 ) From ( 1 ) and ( 2 ), ⇒ AB=BC=CD=DA Hence, ABCD is a rhombus.

Description : Is this statement true or falseThis following statement is an example of the Multiplication Property of Inequality?

Last Answer : 1

Description : is this statement true or falseThe Multiplication Property of Equality states that an equation remains true if you divide both sides of the equation by the same number.?

Last Answer : Answers is the place to go to get the answers you need and to ask the questions you want

Description : Frame the formula for the area (A) of a quadrilateral given by half the product of its diagonal (d) and sum of offsets drawn to the diagonal from its

Last Answer : Frame the formula for the area (A) of a quadrilateral given by half the product of its diagonal (d) and ... its opposite vertices `(h_(1) and h_(2))`?

Description : In McCabe-Thiele method, at infinite reflux ratio (A) The overhead product is minimum (B) Both the operating lines coincide with diagonal (C) Both (A) and (B) (D) Neither (A) nor (B)

Last Answer : (A) The overhead product is minimum

Description : Which is the best tube arrangement (in a shell and tube heat exchanger) if the fluids are clean and non-fouling? (A) Square pitch (B) Triangular pitch (C) Diagonal square pitch chemical-engineering

Last Answer : (B) Triangular pitch

Description : PQRS is a parallelogram whose area is 180 cm2 and A is any point on the diagonal QS. The area of △ASR = 90 cm2. Find this statement is true or false. -Maths 9th

Last Answer : Solution :- As diagonal of the parallelogram divides it into two triangles of equal area. Since, area (△SRQ ) = 1/2 area(PQRS) area (△SRQ ) = 1/2 x 180 ... = 90 cm2 (Given) This is not possible unless area (△SRQ ) = area (△ASR ) So, the given statement is false.

Description : Pick up the correct statement from the following: (A) Lateral reinforcement in R.C.C. columns is provided to prevent the longitudinal reinforcement from buckling (B) Lateral reinforcement prevents ... Lateral reinforcement stops breaking away of concrete cover, due to buckling (D) All the above

Last Answer : Answer: Option D

Description : Which algorithm is used as a general variant of a theorems, in the domain of integral numbers: a. Multiplication algorithm c. Addition algorithm d. Simple algorithm

Last Answer : c. Addition algorithm

Description : ________ printer is also called pin printer. A. Laser B. Drum C. Daisy Wheel D. Dot Matrix

Last Answer : D. Dot Matrix

Description : Upper first premolar with MO cavity; what is important about the application of the matrix band (the question has also shown too as .What is complicated by): A. The mesial concavity of the root ... pulp C. High buccal pulp horn D. High lingual pulp horn E. Concavity of distal root surface

Last Answer : A. The mesial concavity of the root surface

Description : VAM is also called........................ a. Matrix Minima Method b. Penalty Method c. MODI Method d. None of these

Last Answer : b. Penalty Method

Description : Matrix Minima Method to find initial feasible solution to a TP is also called ....................... a. NWCM b. LCM c. VAM d. None of these

Last Answer : c. VAM

Description : Find a letter from the Bengali alphabet , which is divided into two numbers by addition , subtraction , multiplication , 12 , 8 , 26 and 3, respectively, what is the letter ?

Last Answer : The letter ' ঔ ' ... If you divide it side by side, 9 above and 3 below. Which is 9 + 3 = 12 , 9-3 = 8 , 9 * 3 = 26 , 9/3 = 3.

Description : Which is an algorithm or techniques used to multiply two numbers. a. Addition algorithm b. Subtraction algorithm c. Multiplication algorithm d. __ Allof these

Last Answer : c. Multiplication algorithm

Description : Which algorithm is used to find GCD of two integers. a. Multiplication algorithm b. Division algorithm c. Addition algorithm d. Simple algorithm

Last Answer : b. Division algorithm

Description : Shifting a register content to left by one bit position is equivalent to (A) division by two. (B) addition by two. (C) multiplication by two. (D) subtraction by two

Last Answer : (C) multiplication by two.