Question

In: Advanced Math

using the fact that : A positive integer n ≥ 3 is constructive if it is...

using the fact that : A positive integer n ≥ 3 is constructive if it is possible to construct a regular n-gon by straightedge and compass, it is possible to construct the angle 2π/n. And that if both angles α and β can be constructed by straightedge and compass then so are their sums and differences.The outside angle of a regular n-gon is 2π/n.

1. Suppose that n = p^(α1) ··· p^(αk) where p ,··· , pk are distinct odd primes. Prove that n is constructive if and only if each pi^(αi) is constructive.

2. Prove that 2^α is constructive for any positive integer α ≥ 2

Solutions

Expert Solution

1.

n=p1^(a1)...pk^(ak) where p1,...,pk are distinct odd primes.

Let i be any of 1,2,...,k.

Then, n=(p1^(a1)...pi-1^(a(i-1))pi+1^(a(i+1))...pk^(ak))pi^(ai)=xpi^(ai), where x is a positive integer.

I shall denote $$\pi$$ by (pi).

Then, 2(pi)/n=2(pi)/(xpi^(ai))

=> 2(pi)/(pi^(ai))=2x(pi)/n.

Let us suppose that n is constructive. Then, it is possible to construct the angle 2(pi)/n by straightedge and compass.

Now, it has been said that sums of constructible angles are also constructible, then positive integer multiples of constructible angles are also constructible. Then,

2(pi)/n is constructible

=>  x(2(pi)/n) is constructible

=> 2x(pi)/n is constructible

=>  2(pi)/(pi^(ai)) is constructible

=> pi^(ai) is constructive. This is true for all i=1,2,3,...,k

So, n is constructive => pi^(ai) is constructive -------(A)

Now, the Gauss-Wantzel theorem states that:

"A regular n-gon is constructible with straightedge and compass if and only if n = 2kp1p2...pm where k and m are non-negative integers, and the pi's (when m > 0) are distinct Fermat primes (prime numers of the form $2^{2n}+1$ for non-negative integers n ".

Since n is constructive iff regular n-gon is constructible with straightedge and compass, then n is constructive if and only if n = 2kp1p2...pm where k and m are non-negative integers, and the pi's (when m > 0) are distinct Fermat primes. Then, if each piai is constructive,

each piai is a product of 2kq1q2...qm, where k and m are non-negative integers, and the qi's (when m> 0) are distinct Fermat primes

=> p1^(a1)...pk^(ak) is a product of 2kq1q2...qm, where k and m are non-negative integers, and the qi's (when m> 0) are distinct Fermat primes

=> n is a product of 2kq1q2...qm, where k and m are non-negative integers, and the qi's (when m> 0) are distinct Fermat primes

=> n is constructive.

So, each pi^(ai) is constructive => n is constructive --------(B).

From (A) and (B), our proof is complete.

2.

Now, we know that we can bisect any angle using just a compass. Since 2(pi) is constructible,

=> 2(pi)/2^1 is constructible

=> 2(pi)/2^2 is constructible

=> 2(pi)/2^3 is constructible

.

.

.

=> 2(pi)/2^a is constructible, since we can keep on bisecting an angle further and further. For a formal proof, simply apply induction on 'a'

[2(pi)/2^a is constructible=> 2(pi)/2^(a+1) is constructible].

Then, 2^a is constructive.

So, 2^a is constructive for any positive integer a>=2.


Related Solutions

Prove or disprove that 3|(n 3 − n) for every positive integer n.
Prove or disprove that 3|(n 3 − n) for every positive integer n.
Use induction to prove that for any positive integer n, 8^n - 3^n is a multiple...
Use induction to prove that for any positive integer n, 8^n - 3^n is a multiple of 5.
For a given positive integer n, output the first n primes. Example: n=3, output: 2,3,5; n=7,...
For a given positive integer n, output the first n primes. Example: n=3, output: 2,3,5; n=7, output: 2,3,5,7,11,13,17. In Java please
Let n be a positive integer. Prove that if n is composite, then n has a...
Let n be a positive integer. Prove that if n is composite, then n has a prime factor less than or equal to sqrt(n) . (Hint: first show that n has a factor less than or equal to sqrt(n) )
Prove that τ(n) < 2 n for any positive integer n. This is a question in...
Prove that τ(n) < 2 n for any positive integer n. This is a question in Number theory
Prove the following theorem. If n is a positive integer such that n ≡ 2 (mod...
Prove the following theorem. If n is a positive integer such that n ≡ 2 (mod 4) or n ≡ 3 (mod 4), then n is not a perfect square.
For each positive integer, n, let P({n}) =(1/2^n) . Consider the events A = {n :...
For each positive integer, n, let P({n}) =(1/2^n) . Consider the events A = {n : 1 ≤ n ≤ 10}, B = {n : 1 ≤ n ≤ 20}, and C = {n : 11 ≤ n ≤ 20}. Find (a) P(A), (b) P(B), (c) P(A ∪ B), (d) P(A ∩ B), (e) P(C), and (f) P(B′). Hint: Use the formula for the sum of a geometric series
Consider an n×n square board, where n is a fixed even positive integer. The board is...
Consider an n×n square board, where n is a fixed even positive integer. The board is divided into n 2 unit squares. We say that two different squares on the board are adjacent if they have a common side. N unit squares on the board are marked in such a way that every unmarked square on the board is adjacent to at least one marked square. Determine the smallest possible value of N.
Let A[1..n] be an array of distinct positive integers, and let t be a positive integer....
Let A[1..n] be an array of distinct positive integers, and let t be a positive integer. (a) Assuming that A is sorted, show that in O(n) time it can be decided if A contains two distinct elements x and y such that x + y = t. (b) Use part (a) to show that the following problem, re- ferred to as the 3-Sum problem, can be solved in O(n2) time: 3-Sum Given an array A[1..n] of distinct positive integers, and...
Write a function decimalToBinary(n) that converts a positive decimal integer n to a string representing the...
Write a function decimalToBinary(n) that converts a positive decimal integer n to a string representing the corresponding binary number. Do the conversion by repeatedly dividing the number n by 2 using integer division, keepting track of the remainders, until the number is reduced to 0. The remainders written in reverse order form the binary number string. Do integer division of 5 by 2, so that N//2 is 2 with remainder 1. Now divide 2 by 2 to get 1 with...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT