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

Home > Numbers
Missing Pages (Posted on 2009-11-13) Difficulty: 2 of 5
A chunk of pages is missing from a book. The sum of the missing page numbers is 9808. What are those page numbers?

See The Solution Submitted by Brian Smith    
Rating: 3.5000 (2 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution solution | Comment 4 of 7 |

If a is the last missing page and b is the first, then the sum of the missing page numbers will be

(a+b)(a-b+1)/2

Multiplied out:

(a^2 - b^2 + a + b) / 2 = 9808

a^2 + a + b(1-b) - 19616 = 0

Using the quadratic formula to solve for a, when b is given, and assuming that a should be positive:

a = (-1 + sqrt(1 - 4b(1-b)) / 2

Then trying all the odd b values between 1 and 999, seeking a positive integer for a, hopefully even:

DEFDBL A-Z
FOR b = 1 TO 999 STEP 2
  c = b * (1 - b) - 19616
  disc = 1 - 4 * c
  IF disc >= 0 THEN
    sr = INT(SQR(disc) + .5)
    IF sr * sr = disc THEN
      a1 = (-1 + sr) / 2
      IF a1 = INT(a1) THEN
        PRINT b, a1
      END IF
    END IF
  END IF
NEXT b

we find b = 291 and a = 322, as the first and last of the missing pages.


  Posted by Charlie on 2009-11-13 16:48:23
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 (11)
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