Login

Welcome, Guest. Please login or register.

September 29, 2025, 12:31:23 am

Author Topic: TT's Maths Thread  (Read 146419 times)  Share 

0 Members and 2 Guests are viewing this topic.

dcc

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1198
  • Respect: +55
  • School Grad Year: 2008
Re: TT's Maths Thread
« Reply #105 on: November 16, 2009, 02:40:46 pm »
0
Proof by large numbers (Hi polya's conjecture):
Code: [Select]
import List

-- Checks the number's under n using accuracy level p
check :: Integer   -- Number under consideration
      -> Integer   -- Accuracy
      -> Int       -- # of numbers found (<n)
check n p = length $ filter (<=n) $ nub $ map sfloor (genNumList n p)

-- Our special floor function
sfloor :: Double -> Integer
sfloor x = floor (2*x) + floor (4*x) + floor (6*x) + floor (8*x) :: Integer

-- Generates a special list of numbers (maximal element = n/8 => the highest we want to check (seriously))
genNumList :: Integer      -- Number under consideration
           -> Integer      -- Accuracy
           -> [Double] -- Output list of numbers
genNumList n p = [ (fromIntegral x) / (fromIntegral (8 * p)) | x <- [1..(n * p)]]

From this, we see:

Code: [Select]
check 1000 1   = 400
check 1000 2   = 501
check 1000 3   = 601
check 1000 20  = 601
check 1000 100 = 601
-- ad infinitum

This clearly shows that 601 (counting 0) is the solution.  So the 'real' solution is 600.  Takes about 5 seconds to run for accuracy level 3, about a minute for accuracy level 100.  This is my 'exhaustive' proof by large numbers.

TrueTears

  • TT
  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 16363
  • Respect: +667
Re: TT's Maths Thread
« Reply #106 on: November 16, 2009, 02:45:38 pm »
0
expand that difference and you get:



so this is the number of times appears in our sum. Therefore it contributes to the sum.

So now we have to add over m=1 to to m=6. We add to m=6 since 7^4>1995. Then we add on the remaining numbers like you did for f(n=7).
Ah okay, I'll try now, and yeah pretty shit question cause you gotta use a bit of trial and error no matter what to find out that 7^4 :P
PhD @ MIT (Economics).

Interested in asset pricing, econometrics, and social choice theory.

kamil9876

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1943
  • Respect: +109
Re: TT's Maths Thread
« Reply #107 on: November 16, 2009, 02:46:23 pm »
0
Where's the flaw in this one? http://vcenotes.com/forum/index.php/topic,19896.msg201920.html#msg201920

edit: oh wait, you agree it's 600  :-[
« Last Edit: November 16, 2009, 02:52:10 pm by kamil9876 »
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."

dcc

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1198
  • Respect: +55
  • School Grad Year: 2008
Re: TT's Maths Thread
« Reply #108 on: November 16, 2009, 03:34:49 pm »
0
I drew a picture of the floor problem in Hogo (a programming language I created using haskell), and it's kinda interesting:



You can clearly see the periodic behaviour that kamil referred to (watch the difference in the levels of the bar => increases are not uniform).

TrueTears

  • TT
  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 16363
  • Respect: +667
Re: TT's Maths Thread
« Reply #109 on: November 16, 2009, 09:16:20 pm »
0
Prove that the sum is irrational.

I've planned my approach in 2 ways:

1. Must show that the sum is not an integer.
2. Must show it is a zero of a monic polynomial.

But how to go about it?
PhD @ MIT (Economics).

Interested in asset pricing, econometrics, and social choice theory.

Ilovemathsmeth

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1370
  • Respect: +7
Re: TT's Maths Thread
« Reply #110 on: November 16, 2009, 09:29:52 pm »
0
TrueTears, you're SOOOO motivated! WOW!

I feel really ashamed, haven't started looking at Specialist, although I did buy the book and all my friend's working out and intend to start...sometime...
Raw Scores:
Psychology 50 | Mathematical Methods 49 | Further Mathematics 49 | Accounting 49 | Chemistry 44 | English 43
ATAR: 99.75

supdawg

  • Victorian
  • Fresh Poster
  • *
  • Posts: 4
  • Respect: +1
Re: TT's Maths Thread
« Reply #111 on: November 16, 2009, 09:49:31 pm »
0
If you can prove each term is irrational then sum must be irrational

So you must prove that

gcd(n, n+1) = 1, so does not share any common divisors with . But ... etc

So none of them are squares => sum is irrational

kamil9876

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1943
  • Respect: +109
Re: TT's Maths Thread
« Reply #112 on: November 16, 2009, 11:02:27 pm »
0
Quote
If you can prove each term is irrational then sum must be irrational

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."

supdawg

  • Victorian
  • Fresh Poster
  • *
  • Posts: 4
  • Respect: +1
Re: TT's Maths Thread
« Reply #113 on: November 16, 2009, 11:29:38 pm »
0
doesn't apply to that sum

TrueTears

  • TT
  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 16363
  • Respect: +667
Re: TT's Maths Thread
« Reply #114 on: November 17, 2009, 01:40:21 pm »
0
Prove that the sum is irrational.

I've planned my approach in 2 ways:

1. Must show that the sum is not an integer.
2. Must show it is a zero of a monic polynomial.

But how to go about it?
Okay so had another look at this.

So to prove the sum is not an integer.



So,

Let

An overestimate for the sum would be

An underestimate for the sum would be

But since

Thus the sum is not an integer.

Use induction to prove it is a zero of a monic polynomial.

Base case:

Let the sum be written as

Let .

Thus



Thus is a zero.

Now for the inductive hypothesis, assume is true.

Thus is true.

Now we wish to prove that is also true.

We will denote this as .







Let this be a zero of a monic polynomial

So using the inductive hypothesis, is a zero , namely

so

Now what...? How do we expand that polynomial...?
« Last Edit: November 17, 2009, 01:45:48 pm by TrueTears »
PhD @ MIT (Economics).

Interested in asset pricing, econometrics, and social choice theory.

kamil9876

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1943
  • Respect: +109
Re: TT's Maths Thread
« Reply #115 on: November 17, 2009, 03:17:01 pm »
0
doesn't apply to that sum

yes, and that is the trick to the problem.
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."

humph

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1437
  • Respect: +16
Re: TT's Maths Thread
« Reply #116 on: November 18, 2009, 03:56:15 am »
0
In Accelerated Maths (1&2) @ uom, we studied linear algebra (vector spaces / inner product spaces) / real analysis / calculus, so there isn't much relation between the types of questions posted here and the stuff you will study at uni. 

Uni mathematics is set up so that you are able to tackle other subjects later on (i.e. complex analysis follows from real analysis, group theory follows from linear algebra and so on), whereas Olympiad maths doesn't really 'lead' anywhere (in terms of learning more about different topics in the future).

At least, that's my take on it.
+1. There's no real structure or focus in Olympiad maths, which is one of the reasons why it's so difficult - there's no set of rules to apply or techniques to use for every question.
(Of course the point of Olympiad training is to teach rules and techniques that come in handy, and try to identify when to apply them, but it's this identifying bit that makes successful IMO participants a head above the rest.)

I think Olympiad Maths teaches the much more important skills of critical thinking and problem solving.
True, but again it's not something that you can really teach, so much as have in the first place. The point of IMO is to nurture that natural talent.
VCE 2006
PhB (Hons) (Sc), ANU, 2007-2010
MPhil, ANU, 2011-2012
PhD, Princeton, 2012-2017
Research Associate, University College London, 2017-2020
Assistant Professor, University of Virginia, 2020-

Feel free to ask me about (advanced) mathematics.

Over9000

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1468
  • Loves the banter
  • Respect: +20
Re: TT's Maths Thread
« Reply #117 on: November 18, 2009, 03:57:57 am »
0
Someone solve the latest problem
« Last Edit: November 18, 2009, 10:13:43 pm by Over9000 »
Gundam 00 is SOOOOOOOOHHHHHHHHH GOOOOOOOOOOODDDDDDDDDDDD I cleaned my room

VCE 200n(where n is an element of y): Banter 3/4, Swagger 3/4, Fresh 3/4, Fly 3/4

TrueTears

  • TT
  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 16363
  • Respect: +667
Re: TT's Maths Thread
« Reply #118 on: November 19, 2009, 04:06:52 pm »
0
Prove that the sum is irrational.

I've planned my approach in 2 ways:

1. Must show that the sum is not an integer.
2. Must show it is a zero of a monic polynomial.

But how to go about it?
Okay so had another look at this.

So to prove the sum is not an integer.



So,

Let

An overestimate for the sum would be

An underestimate for the sum would be

But since

Thus the sum is not an integer.

Use induction to prove it is a zero of a monic polynomial.

Base case:

Let the sum be written as

Let .

Thus



Thus is a zero.

Now for the inductive hypothesis, assume is true.

Thus is true.

Now we wish to prove that is also true.

We will denote this as .







Let this be a zero of a monic polynomial

So using the inductive hypothesis, is a zero , namely

so

Now what...? How do we expand that polynomial...?

yay with kamil's hint I got it.

Using binomial expansion we see terms with and those without it.

So

Where and represents polynomials containing .

Thus



QED.

PhD @ MIT (Economics).

Interested in asset pricing, econometrics, and social choice theory.

TrueTears

  • TT
  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 16363
  • Respect: +667
Re: TT's Maths Thread
« Reply #119 on: November 19, 2009, 10:49:14 pm »
0
Let . Find the remainder when is divided by .

So



Then what?
« Last Edit: November 19, 2009, 11:08:08 pm by TrueTears »
PhD @ MIT (Economics).

Interested in asset pricing, econometrics, and social choice theory.