Question 1058404
I think instead of CC, you just meant to write C.


-------------------------------------------------------------------


A+C is NOT defined since A is a 3x6 matrix while C is a 9x3 matrix. The dimensions don't match up. Both rows and columns must be the same value (eg: both need to be 3x6 matrices) for it to work.


CA is defined because C is 9x3 while A is 3x6. The inner dimensions, both "3", match up. So multiplication is allowed here.


BC is NOT defined because B is 3x6 while C is 9x3. The inner dimensions of 6 and 9 do NOT match up. 


B-A is defined because both A and B are the same size: 3x6


CB is defined for similar reasons that CA is defined. CB is going to be a 9x6 matrix while A is a 3x6 matrix. The dimensions don't match up. So CB-A is NOT defined.


------------------------------------------------------------------------


To summarize, the following answers are
CA
B-A


Everything else is undefined.