mersenneforum.org  

Go Back   mersenneforum.org > Fun Stuff > Puzzles

Reply
 
Thread Tools
Old 2005-12-14, 11:26   #34
mfgoode
Bronze Medalist
 
mfgoode's Avatar
 
Jan 2004
Mumbai,India

22·33·19 Posts
Thumbs up Trisecting an angle

Quote:
Originally Posted by alpertron
By the way, I found that the polynomial

65536X^{16}-262144X^{14}+430080X^{12}-372736X^{10}+182784X^8-50176X^6+7040X^4-384X^2+1

has the roots sin 3°, sin 21°, sin 33°, sin 39°, sin 51°, sin 57°, sin 69°, sin 87° and their negatives.
This is remarkable, and excellent work Alpertron
This is a characteristic polynomial of degree 16 with eigenvalues sin3*,sin21*etc.
If you could give us the 16 x 16 matrix and trace of the matrix it will be very valuable. Thank you.
Mally

Last fiddled with by mfgoode on 2005-12-14 at 11:32 Reason: Addition
mfgoode is offline   Reply With Quote
Old 2005-12-14, 11:42   #35
mfgoode
Bronze Medalist
 
mfgoode's Avatar
 
Jan 2004
Mumbai,India

22×33×19 Posts
Default Trisecting an angle

Quote:
Originally Posted by nibble4bits
If I took ANY binary number and used the technique I showed you, then yes adding a series of halves+4ths+8ths+16ths+...(a_n)/(2^n) would generate approximations.
k/f(x) -> k=integer, f(x)=sum of (a_0)+(a_1)/2+...(a_n)/(2^n)
This formula should work. :)

I was thinking of stations such as 92.9 and 94.3 which are close to each other - the closer ones are the ones I'd worry about. 98.1, 98.5, and 98.9 are also deliberately arranged that way also.

I showed angles A and B in my diagram as coinciding every 8th (or 9th depending on point of view) cycle. In reallity they would take a lot longer period of time to even come close to alignment. I was lazy - it's was easy to draw. :P

For most people working with radio waves, c can be considered constant. If I'm making an antenna for 20 MHz then I know I need a length of twice the wavelength. "All else being equal" applies here - most people need to just simplify the process to make it effecient. Yes, I know c as a constant is misleading when you take account of nonuniform frames of reference.

<EDIT> Actually an even simpler formula is k*f(x)*2^-n where k and f(x) are integers for a constant and a sum, and n is the number of times to halve that constant.
Quote/ "Yes, I know c as a constant is misleading when you take account of nonuniform frames of reference." /unquote
'c' is a constant regardless of the frame of reference uniform or non-uniform.
Mally

Last fiddled with by mfgoode on 2005-12-14 at 11:45
mfgoode is offline   Reply With Quote
Old 2005-12-14, 12:22   #36
alpertron
 
alpertron's Avatar
 
Aug 2002
Buenos Aires, Argentina

2×683 Posts
Default

Quote:
Originally Posted by mfgoode
This is remarkable, and excellent work Alpertron
This is a characteristic polynomial of degree 16 with eigenvalues sin3*,sin21*etc.
If you could give us the 16 x 16 matrix and trace of the matrix it will be very valuable. Thank you.
Mally
Thanks Mally, but there is no need for using matrices here.

If we want to find a polynomial that has a root cos 3°, just use the relation:

cos (20 * 3°) = cos 60° = 1/2

If x = cos 3°, we find that T20(x) = 1/2 where Tn is the Chebyshev polynomial.

Thus p(x) = 2*T20(x) - 1 is a degree 20 polynomial that has the requested root.

We can notice that cos(20 * 15°) = cos(20 * 75°) = 1/2.

The four numbers cos(15°), cos (-75°) and their negatives are roots of the polynomial q(x) = 16x4 - 16x2 + 1. The polynomial I wrote in my last post is just p(x) / q(x).

Last fiddled with by alpertron on 2005-12-14 at 12:28
alpertron is offline   Reply With Quote
Old 2005-12-15, 09:56   #37
mfgoode
Bronze Medalist
 
mfgoode's Avatar
 
Jan 2004
Mumbai,India

22·33·19 Posts
Question Trisecting an angle

[QUOTE=alpertron]Thanks Mally, but there is no need for using matrices here.

If we want to find a polynomial that has a root cos 3°, just use the relation:

cos (20 * 3°) = cos 60° = 1/2

If x = cos 3°, we find that T20(x) = 1/2 where Tn is the Chebyshev polynomial./Unquote

Thank you very much Alpertron, for introducing me to the wonders of the Chebyshev polynomials.
Kindly bear with me, and tolerate my questions, so that I can get a better idea of its properties and please clarify.
Now given the first few Chebyshev polynomials of the first kind, I find that the ‘first’ coefficients are powers of 2 such that say T (6) =2^(6-1) -…. Giving 32.
I also find a relationship to successive terms as an integration of the previous terms thus
T3 (x) = 4* x^3 -3*x +
T4 (x) = 8* x^4 -20x^2 +1.
Kindly explain to me how exactly the coefficients are obtained? Such as the ‘2nds’ 3 , 20, etc.
Is there an elementary rule for obtaining these coefficients or does the process require a direct integration of the Contour Integral?
In other words given T (n) can we find T (n+1) or T (n-1) ? by elementary integration or have we to integrate the Contour Integral every time? And follow a simple rule for the coefficients? Sloane's A008310 did not have your coefficients and I couldnt open it further.
Thank you,
Mally
mfgoode is offline   Reply With Quote
Old 2005-12-15, 11:28   #38
alpertron
 
alpertron's Avatar
 
Aug 2002
Buenos Aires, Argentina

25268 Posts
Default

Using identity (21): Tn+1 (x) = 2 x Tn (x) - Tn-1 (x) I coded the following program in UBASIC (this interpreted language can operate with polynomials):

Code:
10   input "Degree";N
20   PrevPoly=1
30   ActualPoly=_X
40   for I=2 to N
50   NewPoly=2*_X*ActualPoly-PrevPoly
60   PrevPoly=ActualPoly
70   ActualPoly=NewPoly
80   next I
90   print ActualPoly
In our example, if I enter 20 I get:

524288*X^20 - 2621440*X^18 + 5570560*X^16 - 6553600*X^14 + 4659200*X^12 - 2050048*X^10 + 549120*X^8 - 84480*X^6 + 6600*X^4 - 200*X^2 + 1

As an exercise for you, you could try to find a 48-degree polynomial that has the root sin 1° among others.
alpertron is offline   Reply With Quote
Old 2005-12-16, 00:17   #39
nibble4bits
 
nibble4bits's Avatar
 
Nov 2005

2×7×13 Posts
Default

Quote:
Originally Posted by mfgoode
'c' is a constant regardless of the frame of reference uniform or non-uniform.
Actually what I was refering to is what if I told most people that several galaxies are moving away from us at 60% of light speed. They'de think that the any two in opposite directions must be moving away from each other at 1.2c. Talking about this sort of stuff is disgusting, LOL.
nibble4bits is offline   Reply With Quote
Old 2005-12-17, 15:25   #40
mfgoode
Bronze Medalist
 
mfgoode's Avatar
 
Jan 2004
Mumbai,India

80416 Posts
Thumbs down Trisecting an angle

Quote:
Originally Posted by alpertron
Using identity (21): Tn+1 (x) = 2 x Tn (x) - Tn-1 (x) I coded the following program in UBASIC (this interpreted language can operate with polynomials):

Code:
10   input "Degree";N
20   PrevPoly=1
30   ActualPoly=_X
40   for I=2 to N
50   NewPoly=2*_X*ActualPoly-PrevPoly
60   PrevPoly=ActualPoly
70   ActualPoly=NewPoly
80   next I
90   print ActualPoly
In our example, if I enter 20 I get:

524288*X^20 - 2621440*X^18 + 5570560*X^16 - 6553600*X^14 + 4659200*X^12 - 2050048*X^10 + 549120*X^8 - 84480*X^6 + 6600*X^4 - 200*X^2 + 1

As an exercise for you, you could try to find a 48-degree polynomial that has the root sin 1° among others.
:surprised Thanks Alpertron for identity (21).
I have to confess that I'm nil in programming and its a great drawback for me.
However I must get some one knowledgeable here who can work it out for me.
Mally
mfgoode is offline   Reply With Quote
Old 2005-12-17, 16:11   #41
mfgoode
Bronze Medalist
 
mfgoode's Avatar
 
Jan 2004
Mumbai,India

22×33×19 Posts
Question Trisecting an angle

Quote:
Originally Posted by nibble4bits
Actually what I was refering to is what if I told most people that several galaxies are moving away from us at 60% of light speed. They'de think that the any two in opposite directions must be moving away from each other at 1.2c. Talking about this sort of stuff is disgusting, LOL.

Come to think of it nibble4bits how would you explain it to the people, never mind what they think.! Id like to hear from you. Can anyone explain this to me?
Mally
mfgoode is offline   Reply With Quote
Old 2005-12-19, 00:40   #42
wblipp
 
wblipp's Avatar
 
"William"
May 2003
New Haven

2×7×132 Posts
Default

Quote:
Originally Posted by mfgoode

Come to think of it nibble4bits how would you explain it to the people, never mind what they think.! Id like to hear from you. Can anyone explain this to me?
Mally
Here's what I say when this comes up:

The Michelson-Morley experiments show that the universe is a stanger place than was expected. When you try to figure out a way for the universe to behave consistently with this experimental observation, this is what you end up with.
wblipp is offline   Reply With Quote
Old 2005-12-19, 19:15   #43
cheesehead
 
cheesehead's Avatar
 
"Richard B. Woods"
Aug 2002
Wisconsin USA

22·3·641 Posts
Default

Quote:
Originally Posted by nibble4bits
Actually what I was refering to is what if I told most people that several galaxies are moving away from us at 60% of light speed. They'de think that the any two in opposite directions must be moving away from each other at 1.2c.
Well, they are moving away from each other at 1.2c, in our frame of reference.

But they're not moving away from each other at 1.2c in either of their own frames of reference.
cheesehead is offline   Reply With Quote
Old 2005-12-19, 22:08   #44
garo
 
garo's Avatar
 
Aug 2002
Termonfeckin, IE

ACC16 Posts
Default

In a manner of speaking yes I think they are as no light from one ever reaches the other. I'm no expert so anyone can explain why I am wrong I'd appreciate it.
garo is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
angle bisection bhelmes Math 11 2017-11-17 16:47
Angle bisector problem philmoore Puzzles 25 2007-02-19 20:04
Trisecting an angle Wynand Miscellaneous Math 13 2006-08-07 21:25

All times are UTC. The time now is 15:50.


Mon Aug 2 15:50:45 UTC 2021 up 10 days, 10:19, 0 users, load averages: 2.20, 2.20, 2.28

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.