- Messages
- 19,708
- Name
- Darren
- Edit My Images
- Yes
Youngest lad has a maths homework question
find the fraction: 0.372727272 recurring.
now I am a bit of a maths head and have never been stumped by a homework question before but this is a non calculator question!!
I could not for the life of me work out how to get the answer easily !!
Now what I did was to write a quick javascript routine:
which goes through all the numbers from 1 to 500 and means that I could find that the actual answer is 41/110.
Now does anyone know how a 14 year old is supposed to get this answer ??
find the fraction: 0.372727272 recurring.
now I am a bit of a maths head and have never been stumped by a homework question before but this is a non calculator question!!
I could not for the life of me work out how to get the answer easily !!
Now what I did was to write a quick javascript routine:
Code:
constant=0.372727272727272727272;
out="";
for (var i = 1; i < 500; i++) {
out=out+"\r"+i+" "+i*constant;
};
alert(out);
which goes through all the numbers from 1 to 500 and means that I could find that the actual answer is 41/110.
Now does anyone know how a 14 year old is supposed to get this answer ??


:bang: