Matrix multiplication Definition and 106 Threads

  1. E

    Matrix Multiplication: Can You Multiply a Matrix in the Middle?

    Ok, maybe a dumb question, but anyway: if I have some matrices equation like this: AB = BC if I want to multiply both sides by some matrix Z can I stick it in the middle? AZB = BZC I know I can do these two: ABZ = BCZ ZAB = ZBC but can I do the middle too? Thanks!
  2. T

    How to Determine Matrix B in Matrix Multiplication Problem?

    I know how to solve basic problems like this, but I have no clue where to start with one of the first parts in this example. I am given the following information about C, which is a 2 X 2 matrix. C \left[ \begin{array}{cc} 1\\ 2 \end{array} \right] = \left[ \begin{array}{cc} 2\\ 1...
  3. C

    Efficient Methods for 3x3 Matrix Multiplication

    Is there an easy way to do 3 X 3 Matrix Multiplication?
  4. tandoorichicken

    How Does Matrix Multiplication Work in C Programming?

    For a computer program, I have to multiply: a[][] * b[] and store it in c[] how does the math for this work out on paper? What exactly am I multiplying?
  5. A

    MATLAB Solving Matrix Multiplication Problems with Matlab 7.0

    I have homework due and no help from the TA's due to a language problem. How do you multiply a scalar with a matrix? It seems so simple, but I keep getting errors, such as "matrix must be square". .m funtion code: function X=parabola(a,x,b) X=(x*a+b)^2; Command window code ...
  6. L

    Matrix Multiplication and Commuting

    Why might two matrices commute? I.e Why would AB=BA because in general, matrices usually do not commute. What are the properties of matrices that do commute? Ben
Back
Top