When I was near the end, I pressed backspace to clear my answer, and it wound up navigating me back to HN, wiping out my results. (I hate backspace-to-go-back. It's the worst feature in a browser. Is there a way to turn it off?) This mental math exercise is a cool and fun concept! Good execution.
> I hate backspace-to-go-back. It's the worst feature in a browser. Is there a way to turn it off? I love this feature. Makes browser navigation keyboard friendly. Different strokes for different folks I guess.
Ten seconds of math
111–120 of 123 posts
Re: Ten seconds of math
#112Earlier quoted context omitted.
Not really. Mental arithmetic is the ability to move numbers around in your head, it really is equivalent to being able to type as a programmer. Mental arithmetic is to number theory as being able to type is to programming. That you do not understand this, shows that you too have been damaged by the standard teaching of maths within education - pre university level.
> Not really. Yes, really. "Arithmetic is the branch of mathematics dealing with integers or, more generally, numerical computation" -- http://mathworld.wolfram.com/Arithmetic.html > Mental arithmetic is to number theory as being able to type is to programming. To paraphrase you, number theory != mathematics. (But number theory ⊂ mathematics, just as arithmetic ⊂ mathematics.) > That you do not understand this, shows…
I grade school many are taught that math === arithmetic. Then they get to interesting stuff in high school and college and realize arithmetic was just a tiny part of the story. So many at that phase are emphatic about refuting what they were told early on about arithmetic being math. Then when you calm down from that notion, you can get back to realizing that while arithmetic is only a small part of math, it is still very much a part.
Re: Ten seconds of math
#113setInterval(function() {document.getElementById('question-answer').value = Number(document.getElementById('question').innerHTML.split(' ')[0]) + Number(document.getElementById('question').innerHTML.split(' ')[2]); $('#question-answer').trigger(jQuery.Event( 'keyup', 16 ));},500)
Re: Ten seconds of math
#114Earlier quoted context omitted.
I have this on my phone, my 5 and 9 year olds like it! I find the hard level pretty hard - it would be good IMO if you could change the mode to include negatives (maybe roots and squares [+other powers?], like here) and to expand the number range to. I seem to remember someone mentioning (probably on here) that they played a mental maths game where you had to give an operation on a number, you didn't say the answer b…
Thanks for the feedback! If the hard level is pretty hard, wouldn't adding more operations make it even harder? I kept the number range small because I felt it would be too hard to do mentally otherwise, but I'm definitely open to extending it. The idea was novel for me but I was quite certain it has been done before in one way or another.
Re: Ten seconds of math
#115Earlier quoted context omitted.
I have this on my phone, my 5 and 9 year olds like it! I find the hard level pretty hard - it would be good IMO if you could change the mode to include negatives (maybe roots and squares [+other powers?], like here) and to expand the number range to. I seem to remember someone mentioning (probably on here) that they played a mental maths game where you had to give an operation on a number, you didn't say the answer b…
Thanks for the feedback! If the hard level is pretty hard, wouldn't adding more operations make it even harder? I kept the number range small because I felt it would be too hard to do mentally otherwise, but I'm definitely open to extending it. The idea was novel for me but I was quite certain it has been done before in one way or another.
Re: Ten seconds of math
#116Earlier quoted context omitted.
My experience has been that mental math training, while not directly useful, generally seems to improve the way my brain works and enhances my analytic thinking. This effect is a lot more tangible with longer, multi-step problems. In college (physics major) I made a point of doing every integral in my head if I could, and over time I found that my mental 'scratch space' seemed to be getting longer - that I could hold…
General problem solving and critical thinking is good mental training. Timed arithmetic drills are neither, and I really should hope that arithmetic doesn't count as "critical thinking" for the majority of the audience on HN.
Re: Ten seconds of math
#117Earlier quoted context omitted.
General problem solving and critical thinking is good mental training. Timed arithmetic drills are neither, and I really should hope that arithmetic doesn't count as "critical thinking" for the majority of the audience on HN.
I have to agree - for all the talk of "mental training", is there any actual evidence that arithmetic drills will actually help with problem-solving and critical-thinking?
Re: Ten seconds of math
#118Re: Ten seconds of math
#119I thought that maybe the ranking was real.. no its not function getRank(score) { // TODO we should add a real ranking one day var ONE_BARELY_REACHES_THIS_SCORE = 200; return Math.floor(100 * Math.min(Math.E * score / (ONE_BARELY_REACHES_THIS_SCORE * Math.PI), 1)); }
Re: Ten seconds of math
#120setInterval(function(){ $("#question-answer").val(eval($("#question").text())).trigger("keyup") }, 2001);