First time here? Check out the FAQ!

Ask Your Question
0

Factorizing matrix entries that are polynomials

asked 1 year ago

vidyarthi gravatar image

Suppose i have a polynomial matrix like:

var('x')
g=graph.CompleteGraph(4)
h=g.am()
t=h-x*identity_matrix(4)
t1=t.adjugate()
t1

Then, how do i get t1 in the factorized/simplified form. Specifically, I see that there are exactly two distinct entries in t1, and each of them can be factorized into two distinct monomial powers. But, how do I get this directly, without having to factorize each element separately. Any hints? Thanks beforehand.

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
0

answered 1 year ago

vidyarthi gravatar image

Thanks to @MaxAlexseyev, to get what I wanted, which is the adjugate matrix having all its individual entries factored, I used the command t1.apply_map(lambda z:factor(z)), which does the work.

Preview: (hide)
link

Comments

You do not need to wrap factor in a lambda expression ; this wrapping is useful to wrap a method?

Emmanuel Charpentier gravatar imageEmmanuel Charpentier ( 1 year ago )
2

answered 1 year ago

Max Alekseyev gravatar image

I'm not sure if I got your question correct, but if you want to find a common factor of the matrix elements, you can do so by computing gcd:

c = gcd(t1.list())

Then you can divide your matrix by this common factor and simplify the rest:

print( (t1 / c).apply_map(lambda z: z.full_simplify()) )

which gives

[-x + 2     -1     -1     -1]
[    -1 -x + 2     -1     -1]
[    -1     -1 -x + 2     -1]
[    -1     -1     -1 -x + 2]

Btw, if you know upfront that you'll deal with polynomial entries, it's better to define a polynomial ring in variable x, which eliminates the need in calling .full_simplify():

R.<x> = QQ[]
g=graphs.CompleteGraph(4)
h=g.am()
t=h-x*identity_matrix(4)
t1=t.adjugate()
c = gcd(t1.list())
print( t1 / c )
Preview: (hide)
link

Comments

Thanks! I actually wanted to factorize each of the individual matrix entries. On writing factor(t1.list()), I get error saying it cannot factor the list. Any workaround?

vidyarthi gravatar imagevidyarthi ( 1 year ago )

Got it! I used t1.apply_map(lambda z:factor(z))to get what I wanted.

vidyarthi gravatar imagevidyarthi ( 1 year ago )

Then you can simply use t1.apply_map(factor).

Max Alekseyev gravatar imageMax Alekseyev ( 1 year ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 1 year ago

Seen: 224 times

Last updated: Aug 22 '23