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 _____.

1 Answer

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 _____.

Related questions

Description : If A and B two sets containing 2 elements and 4 elements, respectively. Then, the number of subsets of `A xx B` having 3 or more elements, is

Last Answer : If A and B two sets containing 2 elements and 4 elements, respectively. Then, the number of subsets of `A xx B` ... `256` B. `220` C. `219` D. `211`

Description : 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

Last 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.

Description : If `A xx [{:(1, 2, 3),(4, 5, 6):}] = [{:(1, 2, 3), (3, 2, 1), (3, 1, 2):}]`, then the order of A is ____.

Last Answer : If `A xx [{:(1, 2, 3),(4, 5, 6):}] = [{:(1, 2, 3), (3, 2, 1), (3, 1, 2):}]`, then the order of A is ____.

Description : If `(A + B^(T))^(T)` is a matrix of order `4 xx 3`, then the order of matrix B is____.

Last Answer : If `(A + B^(T))^(T)` is a matrix of order `4 xx 3`, then the order of matrix 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 : D and E are respectively the points on the sides AB and AC of a triangle ABC such that AD = 2 cm, BD = 3 cm, BC = 7.5 cm and DE || BC. Then, length of DE (in cm) is (a) 2.5 (b) 3 (c) 5 (d) 6

Last Answer : (b) 3

Description : The value of `((log_(2)9)^(2))^((1)/(log_(2)(log_(2)9)))xx(sqrt(7))^((1)/(log_(4)7))` is .......... .

Last Answer : The value of `((log_(2)9)^(2))^((1)/(log_(2)(log_(2)9)))xx(sqrt(7))^((1)/(log_(4)7))` is .......... .

Description : Which of the following are correct with respect to the unit of radioactivity? (i) The SI unit of radioactivity is curie (Ci) (ii) `1 Ci = 3.7 xx 10^(-

Last Answer : Which of the following are correct with respect to the unit of radioactivity? (i) The SI unit of radioactivity is ... (i) and (ii) D. (ii) and (iv)

Description : A long straight wire is carrying a current of 12 A . The magnetic field at a distance of 8 cm is `(mu_(0) =4pi xx 10^(-7) N A ^(2))`

Last Answer : A long straight wire is carrying a current of 12 A . The magnetic field at a distance of 8 cm is `(mu_(0) =4pi xx ... /m^(2)` D. `4xx10^(-5)Wb//m^(2)`

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 : 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 : 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 : 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 : 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 : 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 : The mass, stiffness, and damping matrices of a two-degree-of-freedom system are symmetric.

Last Answer : True

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 : 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 : 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 : 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 : 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 : If `a_j=0(i!=j)anda_(i j)=4(i=j)`,,then the matrix `A =[a_(i j)]_(n xx n)` is a matrix

Last Answer : If `a_j=0(i!=j)anda_(i j)=4(i=j)`,,then the matrix `A =[a_(i j)]_(n xx n)` is a matrix

Description : If `16200=2^(a)xx3^(b)xx^(c)`, then find a, b, c.

Last Answer : If `16200=2^(a)xx3^(b)xx^(c)`, then find a, b, c.

Description : If `((x^(m)xx x^(n))/x^(p))^(q)=x^(k)`, then `k=` ________.

Last Answer : If `((x^(m)xx x^(n))/x^(p))^(q)=x^(k)`, then `k=` ________.

Description : If a gas absorbs `200J` of heat and expands by `500 cm^(3)` against a constant pressure of `2 xx 10^(5) N m^(-2)`, then the change in internal energy

Last Answer : If a gas absorbs `200J` of heat and expands by `500 cm^(3)` against a constant pressure of `2 xx 10^(5) N ... . `-100 J` C. `+100 J` D. None of these

Description : If x is a non zero number then `x xx x xx x` written as__________ is called the ___________of x

Last Answer : If x is a non zero number then `x xx x xx x` written as__________ is called the ___________of x

Description : A conducting wire of cross-sectional area `1 cm^(2)` has `3 xx 10^(23)` charge carriers per m3. If wire carries a current of `24 mA`, then drift veloc

Last Answer : A conducting wire of cross-sectional area `1 cm^(2)` has `3 xx 10^(23)` charge carriers per m3. If wire carries ... 3)ms^(-1)` D. `5xx10^(-6)ms^(-1)`

Description : ABC is an isosceles triangle in which altitude BE and CF are drawn to equal sides AC and AB respectively (Fig. 7.15). Show that these altitudes are equal. -Maths 9th

Last Answer : In △ABE and △ACF, we have ∠BEA=∠CFA (Each 90 0 ) ∠A=∠A (Common angle) AB=AC (Given) ∴△ABE≅△ACF (By SAS congruence criteria) ∴BF=CF [C.P.C.T]

Description : Product planne t planners must desi st design the ac gn the actual pr tual product an oduct and find w d find ways to _ ays to _____ it ____ it in orde in order to create the bundle ... custome most satisfying customer experience. r experience. a. core benefit b. package package c. brand d. augment

Last Answer : d. augment

Description : A 5 star AC in the previous year may become a _____ AC the next year after revision of rating takes place. a) 5 star c) 3 star b) 7 star d) 10 star

Last Answer : 3 star

Description : Why do people comment "Flagged XX:XX Est" On other peoples posts or comments?

Last Answer : answer:[mod says] People do it to let others know that it has been flagged so that they know they don't need to flag it. As moderators we are really grateful that people flag stuff. ... . Flagging spam is good. Commenting that you have flagged isn't neither helpful nor unhelpful for moderators.

Description : How do I get a x.xx domain name?

Last Answer : Those domains are country code domains (for example ‘d.pr’ is a Puerto Rico domain). You’d have to buy them from the applicable country if the name is still available. I’d guess you’d spend $60 or more on it, depending on the country.

Description : Find the value of logxx + logxx^3 + logxx^5 + ........ + log xx^(2n-1). -Maths 9th

Last Answer : answer:

Description : fatores que, nos anos 20 do século XX, transformaram os EUA numa sociedade de consumo?

Last Answer : full-rigged ship, amply cannoned, was one of the greatest advances of the century and permanently transformed naval warfare. English shipwrights introduced designs in 1573, first demonstrated in Dreadnought, ... cannon meant they were much slower in reloading in a close-range battle, allowing th

Description : The base of a cubical tank is `25 m xx 40 m`. The volume of water in the tank is increasing at the rate of `500 m^(3)//min`. Find the rate at which th

Last Answer : The base of a cubical tank is `25 m xx 40 m`. The volume of water in the tank is ... Find the rate at which the height of water is increasing.

Description : Simplify `(p^(a)/p^(b))^(c)xx(p^(b)/p^(c))xx(p^(c)/p^(a))`

Last Answer : Simplify `(p^(a)/p^(b))^(c)xx(p^(b)/p^(c))xx(p^(c)/p^(a))`

Description : `(xy)^(n)=x^(n)xx` _______.

Last Answer : `(xy)^(n)=x^(n)xx` _______.

Description : The total number of protons in 10 g of calcium carbonate is `(N_(0) = 6.023 xx 10^(23))` :-

Last Answer : The total number of protons in 10 g of calcium carbonate is `(N_(0) = 6.023 xx 10^(23))` :- A. `1.5057 ... 3.0115 xx 10^(24)` D. `4.0956 xx 10^(24)`

Description : One atom of an element x weigh `6.643 xx 10^(-23)` g. Number of moles of atom in 20 kg is :-

Last Answer : One atom of an element x weigh `6.643 xx 10^(-23)` g. Number of moles of atom in 20 kg is :- A. 4 B. 40 C. 100 D. 500

Description : `3.011 xx 10^(22)` atoms of an element weight 1.15 g. The atomic mass of the element is :-

Last Answer : `3.011 xx 10^(22)` atoms of an element weight 1.15 g. The atomic mass of the element is :- A. 10 amu B. 2.3 amu C. 35.5 amu D. 23 amu

Description : XX-XO sex chromosome complement occurs in

Last Answer : XX-XO sex chromosome complement occurs in A. Cockrocach B. Hony bee C. Chimpanzee D. Human female

Description : `("NPP/GPP") xx 100` is

Last Answer : `("NPP/GPP") xx 100` is A. Assimilation efficiency B. Net production efficiency C. Ecological efficiency D. Photosynthetic efficiency

Description : It has been estimated that the total energy ratiated by sun is `3.8 xx 10^(26)` j per second. The source of energy of stars is a thermonuclear reactio

Last Answer : It has been estimated that the total energy ratiated by sun is `3.8 xx 10^(26)` j per second. The source of ... B. 26.9 MeV C. 23.6 MeV D. 19.2 MeV

Description : At radioactive equilibrium, the ratio between two atoms of radioactive elements `A` and `B` is `3.1 xx 10^(9) : 1`. If the half-life period of `A` is

Last Answer : At radioactive equilibrium, the ratio between two atoms of radioactive elements `A` and `B` is `3.1 xx 10^(9) ... B. 3 yrs C. 3.3 yrs D. None of these

Description : At radioactive equilibrium, the ratio between two atoms of radioactive elements `A` and `B` is `3.1 xx 10^(9) : 1`. If the half-life period of `A` is

Last Answer : At radioactive equilibrium, the ratio between two atoms of radioactive elements `A` and `B` is `3.1 xx 10^(9) : ... . 4.65 yrs C. 5.46 yrs D. 5.64 yrs