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

Home > Numbers
Further Arithmetic Integers (Posted on 2006-06-27) Difficulty: 3 of 5
Consider three positive integers x < y < z in arithmetic sequence, and determine all possible solutions of: x4 + y4 = z4 - 64

See The Solution Submitted by K Sengupta    
Rating: 3.3333 (3 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Hints/Tips not a proof but may be spoiler | Comment 1 of 10

A computer program finds

1,2,3 and 7,8,9 as the only sets of values for x,y and z up to a y value of over 11,000, as

FOR t = 2 TO 1000000
 FOR x = 1 TO t - 1
  incr = t - x
  y = x + incr: z = y + incr
  IF x * x * x * x + y * y * y * y = z * z * z * z - 64 THEN
     PRINT x, y, z
  END IF
 NEXT
NEXT

was stopped with t above 11,000 (y is the same as t).


  Posted by Charlie on 2006-06-27 16:02:16
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


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

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