Super Golden Ratio
|
08-07-2022, 07:55 AM
Post: #1
|
|||
|
|||
Super Golden Ratio
Recently I stumbled upon this video by Micheal Penn: What is the super-golden ratio??
It is defined by this equation: \( \begin{align} \psi^3=\psi^2+1 \end{align} \) He solves it algebraically to find: \( \begin{align} \psi=\frac{1}{3}\left(1+\sqrt[3]{\frac{1}{2}\left(29-3\sqrt{93}\right)}+\sqrt[3]{\frac{1}{2}\left(29+3\sqrt{93}\right)}\right) \end{align} \) We can calculate a numerical approximation using Bernoulli's Method with the following program for the HP-42S: Code: 00 { 4-Byte Prgm } Initialise the stack with: CLST 1 And then hit repeatedly the R/S key: R/S R/S R/S … It produces the following sequence: 1 1 1 2 3 4 6 9 13 19 28 … This is also known as A000930: Narayana's cows sequence. The quotients of consecutive elements converge to the root and thus to \(\psi\): Code: 1 ÷ 1 = 1.00000000000 But this is the power iteration to calculate the greatest (in absolute value) eigenvalue of a diagonalizable matrix. To see this enter the following matrix with: 3 ENTER NEWMAT \( \begin{bmatrix} 1 & 0 & 1 \\ 1 & 0 & 0 \\ 0 & 1 & 0 \\ \end{bmatrix} \) Fill the stack using: ENTER ENTER ENTER Enter the initial vector: \( \begin{bmatrix} 1 \\ 1 \\ 1 \\ \end{bmatrix} \) 3 ENTER 1 NEWMAT 1 + And now repeatedly hit the multiply key: * * * … If you think you had enough, calculate the quotient of two consecutive elements, e.g. for: \( \begin{bmatrix} 58425 \\ 39865 \\ 27201 \\ \end{bmatrix} \) 58425 39865 ÷ 1.46557130315 (1.46557123188) This is a "Good place to stop". References You can find a description in Computational analysis with the HP-25 pocket calculator (Peter Henrici):
|
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Super Golden Ratio - Thomas Klemm - 08-07-2022 07:55 AM
RE: Super Golden Ratio - Thomas Klemm - 08-07-2022, 07:56 AM
RE: Super Golden Ratio - Albert Chan - 08-08-2022, 04:07 PM
RE: Super Golden Ratio - Gerson W. Barbosa - 08-09-2022, 10:45 AM
RE: Super Golden Ratio - Albert Chan - 08-17-2022, 02:23 PM
RE: Super Golden Ratio - Thomas Klemm - 08-12-2022, 05:46 PM
RE: Super Golden Ratio - Albert Chan - 08-12-2022, 10:01 PM
RE: Super Golden Ratio - Albert Chan - 08-12-2022, 10:59 PM
RE: Super Golden Ratio - Thomas Klemm - 08-13-2022, 09:57 AM
RE: Super Golden Ratio - Albert Chan - 08-20-2022, 05:10 PM
|
User(s) browsing this thread: 5 Guest(s)