title | author | header-includes | abstract |
---|---|---|---|
Abstract Algebra by Pinter, Chapter 30 |
Amir Taaki |
- \usepackage{mathrsfs}
- \usepackage{mathtools}
- \usepackage{extpfeil}
- \DeclareMathOperator\ker{ker}
- \DeclareMathOperator\ord{ord}
- \DeclareMathOperator\gcd{gcd}
- \DeclareMathOperator\lcm{lcm}
- \DeclareMathOperator\char{char}
- \DeclareMathOperator\max{max}
- \DeclareMathOperator\ran{ran}
- \DeclareMathOperator\deg{deg}
- \DeclareMathOperator\dim{dim}
- \newcommand{\mod}[1]{\ (\mathrm{mod}\ #1)}
- \newcommand{\repr}[1]{\overline{#1}}
- \newcommand{\leg}[2]{\left(\frac{#1}{#2}\right)}
- \let\vec\mathbf
|
Chapter 30 on Ruler and Compass |
Measure the compass radius with from points
Likewise this time go backwards from
Because the lines of the triangles are parallel, they are similar, and the ratios between both sides are constant.
This triangle can be constructed using parallel line constructions (see on YouTube).
Since we can construct
Apply the same argument as above but swap the labels for
From Thales theorem, the angle where
Angle
Take a monic polynomial and
Use parallel line construction (see youtube for howto) to construct parallel lines crossing
See the answer for Q3 mistakenly which is actually for this question.
Just with
We can also split segments in half using a compass and so move along the y axis.
From part A, we then have all the field operations, and since
Since
From pythagoras theorem, the sides are all related by operations that exist in the field, and so both operations must be constructible.
Since
From above, we have
For 30 degrees, use an equilateral triangle. All angles will be 60 degrees. Split it in half forming 2 right angled triangles. One angle will be 30 degrees, therefore it is constructible.
For 75 degrees, construct a half circle with a segment of 30 degrees. The remaining angle is 150 degrees. Split that in half.
22.5 degrees is half of 45 degrees which is formed by the unit right angled triangle.
20 degrees is not constructible by theorem 3 on trisecting an angle. The polynomial has degree 3, so the extension field of the trisected element
Likewise 40 degrees because double 20 degrees is also not constructible. If it was then it would also mean 20 degrees is constructible.
Lastly 140 degrees is not constructible either using the half circle. If it was then it would mean 40 degrees would be constructible.
Each vertex angle in an ngon is
A regular hexagon has 6 vertices each being 120 degrees. 120 degrees being a multiple of 30 degrees is constructible.
A 9gon has vertices 140 degrees which is not constructible by 30C7.
From trigonmetry we know
Note that
Multiply both sides by
sage: # x = cos k, y = sin k
sage: x, y = var("x y")
sage: r = x + I*y
sage: # s = 1 / r = cos k - i sin k
sage: s = x - I*y
sage: # Equation from Q2 above
sage: r^2 + r + 1 + s + s^2
(x + I*y)^2 + (x - I*y)^2 + 2*x + 1
sage: (r^2 + r + 1 + s + s^2).simplify_full()
2*x^2 - 2*y^2 + 2*x + 1
And we know that
From 30A6, any quadratic root is constructible, so therefore
From 30D1, an ngon is constructible iff the angle
Multiply both sides by
sage: (r^3 + r^2 + r + 1 + s + s^2 + s^3).simplify_full()
2*x^3 - 2*(3*x + 1)*y^2 + 2*x^2 + 2*x + 1
sage: # now y^2 = 1 - x^2
sage: # copy past above expr in but substitute
sage: (2*x^3 - 2*(3*x + 1)*(1 - x^2) + 2*x^2 + 2*x + 1).simplify_full()
8*x^3 + 4*x^2 - 4*x - 1
From chapter 22 page 263, the rational root of
Possible values for
sage: p = lambda x: 8*x^3 + 4*x^2 - 4*x - 1
sage: p(1/1), p(1/2), p(1/4), p(1/8)
(7, -1, -13/8, -91/64)
sage: p(-1/1), p(-1/2), p(-1/4), p(-1/8)
(-1, 1, 1/8, -29/64)
Therefore no rational root and irreducible.
Since there is no rational root, we must rely on the polynomial being a power of 2 extension of the rational field. But it is a cubic polynomial and so its degree is 3 which makes it impossible to be constructible.
From the answer above because
So therefore a 7 sided polygon cannot be constructed.
Constructible elements must form an extension field that's degree over the base field is a power of 2. You cannot express elements which are algebraic over a field using a non power of 2 degree polynomial.
See section A.
See section A.
Degree of polynomial is a power of 2.
The equation uses operations defined in part A and so is constructible.