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

Home > Numbers
5 Digit Number (Posted on 2003-08-20) Difficulty: 3 of 5
I am thinking of a 5 digit number that when tripled is a perfect square.

Also, when the 5 digit number is split, the first number is double the second one. What is the five digit number?

(Splitting the 5 digit number into two numbers means 12345 into 1 and 2345 or 123 and 45.)

See The Solution Submitted by Gamer    
Rating: 3.0000 (6 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution SOLUTION | Comment 1 of 13
The answer is 13467 (134 is double 67).

Easily verified with the following C code:
(which shows in the second column the only integral square root...)

13467*3 = 40401 which is the square of 201.

#include "stdafx.h"
#include "math.h"

int main(int argc, char* argv[])
{
int x, y;
for (x=50; x<100; x+=1)
{
y=(200*x)+x;
printf("%d\t%f\n",y,sqrt(3*y));
}
return 0;
}
  Posted by Not Applicable on 2003-08-20 14:41:51
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 (7)
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