How to Divide Polynomial Matrices Using Lambda Matrices

syj
Messages
53
Reaction score
0

Homework Statement



Divide

A(x)=
[x3+2x2+3 -4x3-x2-5]

[3x2-2 x3-2x2+x+4]

by

B(x) =
[x+4 -3]
[-x+6 x+2]

on both the right side and the left side.


Homework Equations





The Attempt at a Solution



I am thinking i need to rewrite A(x) as:

[1 -4]
[0 1 ] x3 +


[2 -1]
[3 -2]x2+

[0 0]
[0 1]x +

[3 -5]
[-2 4]
and do the same to B(x)

but i don't know what to do from there. :(
 
Physics news on Phys.org
ok so do you mean
A(x) = \begin{pmatrix} <br /> x^3+2x^2+3 &amp; -4x^3-x^2-5\\<br /> 3x^2-2 &amp; x^3-2x^2+x+4 <br /> \end{pmatrix}<br />

i have to admit I don't really understand the question. What do you mean by divide? The matrix equivalent would be to multiply by the inverse, assuming it exists

It me help to write B as
<br /> B = M\begin{pmatrix} <br /> x\\<br /> 1<br /> \end{pmatrix}<br />

Then can you show, assuming x is not zero, that the inverse is
<br /> B^{-1} = <br /> \begin{pmatrix} <br /> \frac{1}{x} &amp; <br /> 1<br /> \end{pmatrix}<br /> M<br />
 
Last edited:
thanks
i found a book online that explained the method.
except in the book they referred to the matrix as a lambda matrix not a polynomial matrix.
thanks again for all the help.
i shall be posting more questions soon ;)
 
no worries, made a correction above, so if you were using it re-check
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top