Processing math: 100%

Wednesday, August 7, 2024

3 consecutive summing to 13

 You permute each of the digits 0,1,2,,9 and write them in a single row.


A) Show that no matter what the permutation, some 3 adjacent elements of the row sum to at least 13.

B) Can you find a permutation where no 3 adjacent elements sum to more than 13?


Scroll down for solution



.


.


A) Say the permutation is x0,x1,,x9.


Now one of x0 or x9 is <9. We can assume x0<9.

Let Si=xi+xi+1+xi+2.

Since x0<9 we must have that S1+S4+S7>36 and thus max{S1,S4,S7}>12.


B)  9 3 1 7 4 2 6 0 5 8


Tuesday, July 9, 2024

Peter Winkler's factorial problem

 A cute problem from Peter Winkler's collection of math puzzles.


S={n!|1n100,nN}

Can we remove a single element from S such that the product of the elements of the resulting set is a perfect square?


Scroll down for a solution.




Product of elements of S is

P=1!2!99!100!

Pair up terms (2n1)!(2n)!=((2n1)!)22n

Thus


P=(1!3!5!99!)2(2.4.6100)

=(1!3!5!99!)2.250.50!


Thus removing 50! from S will give us the desired result.

Friday, May 31, 2024

Volume of an n dimensional region

 What is the volume of the region in Rn defined as follows


Vn={(x1,x2,,xn)Rn|xi0 and xi1}


Scroll down for a clever proof (if you know the source, please comment)

.

.

.


Transform the space with yj=1ijxi


This is a linear transformation that gives a new region defined as


Wn={(y1,y2,,yn)Rn|0y1y2yn1}


Wn is just a subset of the hypercube [0,1]n. The hypercube can be split into n! regions of equal volume, each region corresponding to a sort order among the coordinates. Wn is one of them.


Thus volume of Wn is 1n!


Since the determinant of the linear transformation from Vn to Wn is 1, the volume of Vn is 1n! too!

Saturday, April 6, 2024

Exactly 80% success

A basketball player is practising free throws. Their current success rate (ratio of successful throws to total) is exactly 70% (or 0.7 in terms of ratio). After a few more throws that success rate is 90%. 

Show that at some point the success rate was exactly 80%.


Scroll down for a solution




.


Look at (misses, hits) on the integer lattice and x-y coordinate plane. If a miss occurs, we increment x coordinate, else we increment y coordinate.

Initially we are on the line 3y=7x (70% hit rate) and reach the line y=9x (90% hit rate), crossing the line y=4x (80% hit rate) at some point, with some hit (i.e by incrementing the y-coordinate).,

The only way to cross the line y=4x vertically is to actually land on it first (every x = N line intersects y = 4x at (N, 4N) which is part of the integer lattice. Thus we achieve exactly 80%,

Wednesday, February 21, 2024

Product of three consecutive positive integers

 Can the product of three positive consecutive integers be a perfect square?




Scroll down for a solution



.


Assume the three integers are n1,n,n+1 and that (n1)n(n+1)=n(n21) is a perfect square.


Since n is relatively prime to both n1 and n+1 (and hence their product n21), we must have that n21 is a perfect square too.

Friday, January 19, 2024

A problem from INMO

 In a triangle ABC (sides a,b,c opposite A,B,C), angle A is twice B.


Show that a2=b(b+c)


Try not to use trigonometry if possible.



Scroll down for a solution



.


.

Let AD be the angular bisector of A, D lying on BC (might help to draw a figure).


Then by angular bisector theorem

BD=acb+c,DC=abb+c

BAD is isosceles, with AD=BD. Also triangle ADC is similar to triangle BAC.

AD/AB=DC/AC gives the result.


There are non-trigonometric proofs of the angular bisector theorem. For eg, prove for right angled triangles and use affine transform etc.