Matrix multiplication Definition and 108 Threads

  1. D

    Solving Matrix Equations: k Values and Matrix Multiplication

    hi all just got stuck on these questions on matrices just wondering if anyone can help me out thanks 1. For which values of k is the folowing equation satisfied? |3-k 5 | = 0 |4 4-k | its all in a matrix. I am thinking it is the determinant =0...
  2. M

    Question regarding matrix multiplication

    Hi When one is trying to multiply two matrices of different sizes e.g. a 2x3 and a 3x3. I know that one has to use the column-row-rule which states: AB_{ij} = a_{i1} b_{1j} + a_{i2} b_{2j} + \cdots + a_{i n} b_{m j} Looking at the following example: A= \left[ \begin{array}{ccc} 7...
  3. 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!
  4. 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...
  5. C

    Efficient Methods for 3x3 Matrix Multiplication

    Is there an easy way to do 3 X 3 Matrix Multiplication?
  6. 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?
  7. 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 ...
  8. 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