Why does matrix arithmetic work?

163 views

I know how to do matrix multiplication, cross, product, dot product, etc. But I don’t get why they work.

In: 2

4 Answers

Anonymous 0 Comments

Say you have a table like this:

___

Number of tickets sold

Adults: 50 | Children: 85 | Seniors: 60 | Veterans: 45

___

And another table like this:

___

Price of tickets:

Adults: $10 | Children: $8 | Seniors: $6 | Veterans: $6

___

And you need to find the total dollar amount of sales. It makes sense that you need to multiply each item in the first table by the respective items in the second table. Then add them all up.

That’s a matrix operation.

With larger matrices, you’re just doing more steps.

You are viewing 1 out of 4 answers, click here to view all answers.