All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
Golden polynomials (Posted on 2025-04-21) Difficulty: 3 of 5
Let φ be the positive root to x2 = x + 1. In how many ways can φ6 be expressed as a degree 4 polynomial in φ with nonnegative integer coefficients? For example, one way φ6 can be written as a degree 5 polynomial in φ with nonnegative integer coefficients is φ6 = φ5 + φ4.

No Solution Yet Submitted by Danish Ahmed Khan    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution computer solution Comment 1 of 1
There are 12 ways.

phi=(1+sqrt(5))/2
ct=0;
for a=1:3 
  for b=0:5
    for c=0:7
      for d=0:12
        for e=0:18
          t=a*phi^4+b*phi^3+c*phi^2+d*phi+e ;
          if abs(t-phi^6)<.0000001
            disp([a b c d e])
            ct=ct+1;
          end
        end
      end
    end
  end
end
ct

   coefficients of powers of phi

pwr: 4     3     2     1     0
     1     0     0     5     3
     1     0     1     4     2
     1     0     2     3     1
     1     0     3     2     0
     1     1     0     3     2
     1     1     1     2     1
     1     1     2     1     0
     1     2     0     1     1
     1     2     1     0     0
     2     0     0     2     1
     2     0     1     1     0
     2     1     0     0     0
ct =
    12

  Posted by Charlie on 2025-04-21 10:23:21
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (1)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (4)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2025 by Animus Pactum Consulting. All rights reserved. Privacy Information