![]() |
|
|
#34 | |
|
Bronze Medalist
Jan 2004
Mumbai,India
22·33·19 Posts |
Quote:
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 |
|
|
|
|
|
|
#35 | |
|
Bronze Medalist
Jan 2004
Mumbai,India
22×33×19 Posts |
Quote:
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 |
|
|
|
|
|
|
#36 | |
|
Aug 2002
Buenos Aires, Argentina
2×683 Posts |
Quote:
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 |
|
|
|
|
|
|
#37 |
|
Bronze Medalist
Jan 2004
Mumbai,India
22·33·19 Posts |
[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
|
|
|
|
|
|
#38 |
|
Aug 2002
Buenos Aires, Argentina
25268 Posts |
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 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. |
|
|
|
|
|
#39 | |
|
Nov 2005
2×7×13 Posts |
Quote:
|
|
|
|
|
|
|
#40 | |
|
Bronze Medalist
Jan 2004
Mumbai,India
80416 Posts |
Quote:
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
|
|
|
|
|
|
|
#41 | |
|
Bronze Medalist
Jan 2004
Mumbai,India
22×33×19 Posts |
Quote:
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
|
|
|
|
|
|
|
#42 | |
|
"William"
May 2003
New Haven
2×7×132 Posts |
Quote:
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. |
|
|
|
|
|
|
#43 | |
|
"Richard B. Woods"
Aug 2002
Wisconsin USA
22·3·641 Posts |
Quote:
But they're not moving away from each other at 1.2c in either of their own frames of reference. |
|
|
|
|
|
|
#44 |
|
Aug 2002
Termonfeckin, IE
ACC16 Posts |
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.
|
|
|
|
![]() |
| 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 |