Answer:
41
Step-by-step explanation:
Matrix Multiplication follows a row-column format. In order to compute this, you must be familiar with vector dot products.
With that in mind, lets get straight into it.
The order that matrix multiplication follows means that the terms in the result are filled in left to right, then top to bottom.
Therefore, a21 will be the 3 value that is computed. This is important becuase this allows to directly compute a21, instead of using up a lot of time computing all the values before.
As a21 is located in the bottom row 1st column, we take the dot product of the 2nd row in matrix 1 and the 1 column in matrix two.
So we have:
(7 2) dot (5 3) = 7*5 + 2*3 = 41
4.3496 miles.
HTH (Hope This Helps)
Answer:
Cleanser that costs 50 cents is 1400 liters, Cleanser that costs 80 cents is 600 liters.
Step-by-step explanation:
We can solve this by using <em>simultaneous equations</em>:
- Let us express the question in terms of equations
Let a be cleanser at 50 cents and let b be the cleanser at 80 cents.
Equation 1: 0.5a + 0.8b = 0.59(a+b)
Equation 2: a + b = 2000
From equation 2, a = 2000 - b (Let's call this equation 3)
2. Substituting equations 2 and 3 in Equation 1:
0.5a + 0.8b = 0.59(a+b)
0.5(2000 - b) + 0.8b = 0.59(2000)
1000 - 0.5b + 0.8b = 1180
0.3b = 180
b = 600
Substitute in equation 3:
a = 2000 - 600
a = 1400
As a note, I formed equation 1 because I know for a fact the cost per liter of a and b. I also know it is sold at 0.59 cents per liter. We are selling 2000 liters in this instance, therefore 0.59(2000) = 1180, which in this case is the selling price.