Homepage › Solution manuals › David A. Cox › Galois Theory › Exercise 10.3.10
Exercise 10.3.10
In Example 10.3.10, prove that meets and at the points and given in (10.13) and (10.14). Also draw the four lines whose slopes are the roots of (10.15).
Answers

Proof. The equation of the line with slope through is
The intersection point of with is given by the system
which gives , , so
The intersection point of with is given by the system
which gives , so
Therefore
We obtain the four slopes and the figure with the following SAGE instructions:
m = var(’m’)
p = 7*m^4-16*m^3-21*m^2+8*m+4
l = solve(p,m)
sols = [eq.right() for eq in l]
slopes = [sol.n() for sol in sols]; slopes
[-1.06517627861170, -0.312773186089791, 0.551041848035361, 3.11262190238042]
P = (1/2,0)
g = plot(x,x,xmin,xmax,color = ’red’)
g += plot(-1/2*x,x,xmin,xmax, color = ’red’)
for m in slopes:
x1,x2 = m/(2*m-2),m/(2*m+1)
Q1,Q2 = (x1,x1),(x2,-1/2*x2)
g += line([Q1,P], color = ’yellow’)
g += line([Q1,Q2], color = ’black’)
texte1 = text("$l_1$",(0.8,0.9), fontsize=15, rgbcolor=(0,0,0))
texte2 = text("$l_2$",(0.8,-0.5), fontsize=15, rgbcolor=(0,0,0))
g += texte1 + texte2
g.show(aspect_ratio=1)
g.save(’marquedRulers.pdf’,aspect_ratio=1,xmin=-1,xmax=1,ymin=-1,ymax=1)
□