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

Revision history [back]

click to hide/show revision 1
initial version

Define the polynomial ring Q[c][x].Find the c values where x2+x+c+1 has a double root.

Sage question: Define the polynomial ring Q[c][x].Find the c values where x2+x+c+1 has a double root. Sage code I have found.

K.<c>=QQ['c']

R.<x>=K[]

f=x^2+x+c+1

f

How do I find the code for the c values where x2+x+c+1 has a double root. Also, can you give some examples so that I can construct some programming code in sage?

click to hide/show revision 2
retagged

updated 5 years ago

FrédéricC gravatar image

Define the polynomial ring Q[c][x].Find the c values where x2+x+c+1 has a double root.

Sage question: Define the polynomial ring Q[c][x].Find the c values where x2+x+c+1 has a double root. Sage code I have found.

K.<c>=QQ['c']

R.<x>=K[]

f=x^2+x+c+1

f

How do I find the code for the c values where x2+x+c+1 has a double root. Also, can you give some examples so that I can construct some programming code in sage?