First time here? Check out the FAQ!

Ask Your Question
0

Find polynomial with given residues modulo two other polynomials

asked 3 years ago

Georgi gravatar image

updated 3 years ago

slelievre gravatar image

Find a polynomial f(x) of degree 3, which when divided by x^2 - 4, gives a remainder 2x - 5, and divided by x^2 + x + 3 gives a remainder -5x - 9.

Preview: (hide)

Comments

Is your question related to SageMath? Do you know about the Chinese Remainder Theorem?

vdelecroix gravatar imagevdelecroix ( 3 years ago )

May i suggest a change in the title of the question? i think it should contain a fast description of the problem, like "find a polynomial, given some residues".

alvaro gravatar imagealvaro ( 3 years ago )

1 Answer

Sort by » oldest newest most voted
2

answered 3 years ago

Max Alekseyev gravatar image

One'd need to employ CRT here - for example:

R.<x> = PolynomialRing(QQ)
print( crt([2*x-5,-5*x-9],[x^2-4,x^2+x+3]) )

gives x^3 + x^2 - 2*x - 9.

Preview: (hide)
link

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: 3 years ago

Seen: 268 times

Last updated: Dec 14 '21