Login

Welcome, Guest. Please login or register.

April 19, 2024, 02:08:18 pm

Author Topic: Fun questions :)  (Read 96471 times)  Share 

0 Members and 3 Guests are viewing this topic.

kamil9876

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1943
  • Respect: +109
Re: Fun questions :)
« Reply #375 on: May 04, 2012, 09:32:10 pm »
0
then how about everything except ?

0=0+2*0
1=1+2*0
2=0+2*1

and then x=x+2*0 for x>3
Voltaire: "There is an astonishing imagination even in the science of mathematics ... We repeat, there is far more imagination in the head of Archimedes than in that of Homer."

pi

  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 14348
  • Doctor.
  • Respect: +2376
Re: Fun questions :)
« Reply #376 on: May 12, 2012, 06:32:30 pm »
+2

rife168

  • Victorian
  • Forum Obsessive
  • ***
  • Posts: 408
  • Respect: +36
  • School Grad Year: 2012
Re: Fun questions :)
« Reply #377 on: May 15, 2012, 08:14:54 pm »
0
Here is the 2012 University of Melbourne School Mathematics Competition (Senior division) paper for those interested.

2012: VCE - 99.10
2013: PhB(Sci)@ANU

Nagisa

  • New South Welsh
  • Trendsetter
  • **
  • Posts: 114
  • Respect: -7
  • School: Lismore High
  • School Grad Year: 2013
Re: Fun questions :)
« Reply #378 on: December 07, 2012, 08:05:23 pm »
+1
ok guys, im don't quite remember was while ago. but here, consider the 3 digit number, 370. the sum of the cubes of its digits equal itself, 3^3 + 7^3 + 0^3 = 370. if my memory is correct, there is only 4 such numbers (that have 3 digits). can anyone else think of them. also, number cant begin with 0(wouldnt be 3 digits).

So...

3^3 + 7^3 + 0^3 = 370 ... works

what else??

paulsterio

  • ATAR Notes Legend
  • *******
  • Posts: 4803
  • I <3 2SHAN
  • Respect: +430
Re: Fun questions :)
« Reply #379 on: December 07, 2012, 08:42:35 pm »
0
I'm gonna have a go at the UoM Maths Comp questions, I haven't done one in a while and I was never really good with the Senior Papers, but I've been able to do a few of the first ones, so I'll see what happens. Let's see if we can have a discussion + collaboration on the last few questions (which are really, really, really hard).

Question 1)

Essentially we just need to find the overlapping area, which is the triangle. Find the base using Pythagoreas' Theorem.



We can find the height using tan, let the angle between a and the diagonal be







Which can be simplified further, I think, but I'll leave that here for now, I'll be back to do more.

kamil9876

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1943
  • Respect: +109
Re: Fun questions :)
« Reply #380 on: December 07, 2012, 08:48:05 pm »
0
I'm gonna have a go at the UoM Maths Comp questions, I haven't done one in a while and I was never really good with the Senior Papers, but I've been able to do a few of the first ones, so I'll see what happens. Let's see if we can have a discussion + collaboration on the last few questions (which are really, really, really hard).

I remember posting two solutions to two of them here: Re: Did anyone do the Melbourne Uni Maths Competition today?

There are also some discussions of the other ones there.
Voltaire: "There is an astonishing imagination even in the science of mathematics ... We repeat, there is far more imagination in the head of Archimedes than in that of Homer."

kamil9876

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1943
  • Respect: +109
Re: Fun questions :)
« Reply #381 on: December 07, 2012, 10:59:18 pm »
+2
ok guys, im don't quite remember was while ago. but here, consider the 3 digit number, 370. the sum of the cubes of its digits equal itself, 3^3 + 7^3 + 0^3 = 370. if my memory is correct, there is only 4 such numbers (that have 3 digits). can anyone else think of them. also, number cant begin with 0(wouldnt be 3 digits).

So...

3^3 + 7^3 + 0^3 = 370 ... works

what else??

Try to use this as an excuse to learn some programming if you havn't. This exercise inspired me to do some programming which I havn't done in ages. Results I got are:

153
370
371
407
Voltaire: "There is an astonishing imagination even in the science of mathematics ... We repeat, there is far more imagination in the head of Archimedes than in that of Homer."

Nagisa

  • New South Welsh
  • Trendsetter
  • **
  • Posts: 114
  • Respect: -7
  • School: Lismore High
  • School Grad Year: 2013
Re: Fun questions :)
« Reply #382 on: December 07, 2012, 11:08:15 pm »
0
haha nice man, u got em all. i just have em in my head :D.

Was it a long code? and do you think there'd be a way of doing it without a computer testing everything in 1 second.??

b^3

  • Honorary Moderator
  • ATAR Notes Legend
  • *******
  • Posts: 3529
  • Overloading, just don't do it.
  • Respect: +631
  • School: Western Suburbs Area
  • School Grad Year: 2011
Re: Fun questions :)
« Reply #383 on: December 07, 2012, 11:31:51 pm »
0
Using Matlab it doesn't seem too long a code (although forgive me for using matlab....)
Code: [Select]
i=0;
for n=100:999
    a=num2str(n);
    a1=str2num(a(1));
    a2=str2num(a(2));
    a3=str2num(a(3));

    num=a1^3+a2^3+a3^3;
    if num==n;
        i=i+1;
        b(i)=n
    end
end
Result
Code: [Select]
b =

   153   370   371   407
Not sure if there is a proper way of doing it though.
2012-2016: Aerospace Engineering/Science (Double Major in Applied Mathematics - Monash Uni)
TI-NSPIRE GUIDES: METH, SPESH

Co-Authored AtarNotes' Maths Study Guides


I'm starting to get too old for this... May be on here or irc from time to time.

Nagisa

  • New South Welsh
  • Trendsetter
  • **
  • Posts: 114
  • Respect: -7
  • School: Lismore High
  • School Grad Year: 2013
Re: Fun questions :)
« Reply #384 on: December 08, 2012, 12:01:12 am »
0
yeah, would be pretty cool though. to show it on paper.

Planck's constant

  • Victorian
  • Forum Leader
  • ****
  • Posts: 748
  • Respect: +52
Re: Fun questions :)
« Reply #385 on: December 08, 2012, 12:12:34 am »
0
Is the answer to q7,

1 + 0.5*n*(n-1)

?


It is my no means a proof, but I started playing the game and my intuitive plan was to try and put as much distance as possible between the first and second coins and then iterate the process to the right.

eg, starting with 6 coins

oooooo

First move the 5th coin, then the 4th, then the 3rd then the 2nd

o----ooooo

Now repeat the process with the 5 rightmost coins

o----o---oooo
o----o---o--ooo
o----o---o--o-oo  endgame


The sequnce of moves if we start with 7 coins,

ooooooo
o-----oooooo
by iteration (the 6 coin problem was 'solved' above)
o-----o----o---o--o-oo  endgame

The arithmetic sequence thus formed gives the answer.

Is there a smarter way to play the game ?



« Last Edit: December 08, 2012, 10:30:20 pm by argonaut »

b^3

  • Honorary Moderator
  • ATAR Notes Legend
  • *******
  • Posts: 3529
  • Overloading, just don't do it.
  • Respect: +631
  • School: Western Suburbs Area
  • School Grad Year: 2011
Re: Fun questions :)
« Reply #386 on: December 08, 2012, 01:13:34 am »
0
Ok I got bored so I tried taking that programming one up a step. I.e. For 4 digits taking the sum of fourth power digits and so on.
3 Digits, 3rd power - 153           370          371        407
4 Digits, 4th power - 1634        8208        9474
5 Digits, 5th power -  54748     92727     93084
6 Digits, 6th power - 548834
2012-2016: Aerospace Engineering/Science (Double Major in Applied Mathematics - Monash Uni)
TI-NSPIRE GUIDES: METH, SPESH

Co-Authored AtarNotes' Maths Study Guides


I'm starting to get too old for this... May be on here or irc from time to time.

Nagisa

  • New South Welsh
  • Trendsetter
  • **
  • Posts: 114
  • Respect: -7
  • School: Lismore High
  • School Grad Year: 2013
Re: Fun questions :)
« Reply #387 on: December 08, 2012, 01:39:15 am »
0
wow i really got you going didn't i. This is really cool, i wish i could program and experiment around with this stuff.

saradom136

  • Victorian
  • Adventurer
  • *
  • Posts: 9
  • Respect: 0
Re: Fun questions :)
« Reply #388 on: January 11, 2014, 01:00:28 am »
0
45. A job needs three men to work for two weeks (10 working days).
Andy works for all 10 days.
Bert works for the first week and Clive works for the second week.
Dave works for 6 days, but then is too sick to work.
Eddy takes his place for 3 days, then Fred does the last day.
When the job is finished they are all paid the same amount. At first they could not work out how much each man should have, but then Fred says: "If I give my wages to Andy, and Eddy gives 100 to both Dave and me, then the wages will be correct". How much was paid for the whole job, and how much does each man get? 
3
Total days worked= 3x2x5 = 30         
Fred's work as a fraction of total work = 1/30
 $100/x = 1/30, X= 100x30 = 3000= total amount payed
$3000/6 = uncorrected payment per man= $500
corrected pay= fraction of total days worked x total payment

total pay is $3000
Andy 10/30 x 3000= $1000
Bert 5/30 x 3000= $500
Clive 5/30 x 3000= $500
Dave 6/30 x 3000= $600
Eddy 3/30 x 3000= $300
Fred 1/30 x 3000= $100