Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
2

Difficulties with resultants and Tschirnhaus transformations

asked 10 years ago

Alasdair gravatar image

I'm experimenting with some polynomial equations, and as a test I'm working through the example given here:

http://www.oocities.org/titus_piezas/...

Basically, in order to eliminate the first two terms of the quintic x5x4x3x2x1 we need to find a transformation y=x2+ax+b (such a polynomial transformation is called a Tschirnhaus transformation, after its first discoverer), for which a and b have the effect of producing a quintic equation in y but without y4 or y3 terms. This is as far as I've got so far:

R.<a,b> = QQ[] 
S.<y> = R[] 
T.<x> = S[]
p = x^5-x^4-x^3-x^2-x-1
res = p.resultant(y-x^2-a*x-b) 
rc = res.coefficients() 
solve([rc[-2],rc[-3]],[a,b]) 

TypeError: a is not a valid variable.

Drat! So I have two questions: why is a not a valid variable, and why can I not isolate individual coefficients of res? I can obtain all the coefficients of res, but I can't isolate just one, with something like res.coeff(y,3).

Preview: (hide)

Comments

If I declare variables, then solve also works

    sage: a, b = var('a b')
    sage: solve([rc[-2],rc[-3]],[a,b])
    [[a == (-11/7), b == (-2/7)], [a == -3, b == 0]]

SL gravatar imageSL ( 10 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 10 years ago

FrédéricC gravatar image

As this is a purely algebraic problem, you can avoid the symbolic solve as follows:

sage: I = R.ideal([rc[-2],rc[-3]])
sage: I.variety()
[{a: -11/7, b: -2/7}, {a: -3, b: 0}]
Preview: (hide)
link

Comments

Perfect - simple and elegant. Thanks very much!

Alasdair gravatar imageAlasdair ( 10 years ago )

Could you please accept the answer if it suits you ? (on the left)

FrédéricC gravatar imageFrédéricC ( 10 years ago )
1

@Alasdair: when you are satisfied with an answer, you can formally accept it by clicking the tick sign on the top left of the answer, below the answer's score. Additionally, you can upvote any answer that helped you, using the upward arrow on top of the answer's score. Accepting the answer marks your question as satisfactorily answered in the list of questions on the main page (helping volunteers to focus on unsolved questions). Additionally, when you accept an answer, you get 2 karma points and the answerer gets 25 karma points. When you upvote, the answerer gets 10 karma points.

slelievre gravatar imageslelievre ( 10 years ago )

Thanks for the reminder: I've accepted the answer.

Alasdair gravatar imageAlasdair ( 10 years 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: 10 years ago

Seen: 616 times

Last updated: Sep 21 '14