IOQM 2023 solutions
Find .
Solution:
Quick tip:
If n^2 = k then (n+1)^2 = k + (2n + 1)
We will use this here.
Also as the numbers grow larger the gap between 2 perfect squares becomes less and less.
For. e.g. there are 10 perfect squares between 1 and 100 but only 4 perfect squares between 101 and 200.
So
X1 = {sqrt(5) ... sqrt(1004)}
will have the most number of perfect squares.
While
X1000 = {sqrt(4001)...sqrt(5000)}
will have the least.
In X1 the first integer square root is 3 and we know that 1024 is the square of 32 so the last integer will be 31.
Total: 31 - 3 + 1 = 29 integers in X1.
In X1000,
We know that 64^2 = 4096 so 64 is the first integer.
70^2 = 4900 and 71^2 = 4900 + 141 > 5000 so 70 is the last.
Total: 70 - 64 + 1 = 7
Answer: 29 - 7 = 22.
Q2.
Find the number of elements in the set
Solution:
So we need to find perfect squares and cubes between 2 and 2023.
For squares we know that 45^2 = 2025 so we will have 2^2 to 44^2 => 43 pairs.
For cubes we know from Ramanujan number 1729 = 12^3 + 1^3 that 12^3 = 1728.
And then we compute 13^3 which comes out to be 2197.
So we have 11 pairs.
Answer: 54.
Q3.
Let and be positive integers such that
Find the smallest possible value of .
Solution:
For ,
At
Now note that we shouldn't try each value from 1 to 10 here.
Start with 1, 5, 10. Whenever you get a valid answer, then take the previous value until you are sure you have found the minimum.
Q4.
Let be positive integers such that
Find the maximum possible value of .
Solution:
Sol.
Since and are integers
will completely divide
There shouldn't be any remainder, thus 2 must be divisible by and since , only possible values are 2 and 3.
When :
which means .
When :
Thus .
.
Q5.
In a triangle , let be the midpoint of and be the midpoint of .
The medians and intersect at . Let and be the midpoints of and respectively. If the area of triangle is , find the area of triangle .
Solution:
Solution link.
Q6.
Let be the set of all even positive integers such that the measure of the angle of some regular polygon is degrees. Find the number of elements in .
Solution:
Sol. Let number of sides of polygon be .
then
But then
Now we need to find divisors of 180 between 1 to 89 since k can be 1 to 89 so 90 - k is also 1 to 89.
180 = 2^2*3^2*5
Total divisors = 3*3*2 = 18
Let's enumerate:
With 2^0:
2^0 3^0 5^0 = 1
2^0 3^0 5^1 = 5
2^0 3^1 5^0 = 3
2^0 3^1 5^1 = 15
2^0 3^2 5^0 = 9
2^0 3^2 5^1 = 45
With 2^1, multiply all the above with 2:
2
10
6
30
18
90 (invalid since > 89)
With 2^2, multiply all the above with 2:
4
20
12
60
36
180(invalid > 89)
So total valid divisors = 6 + 5 + 5 = 16 = Answer.
Q7.
Unconventional dice are to be designed such that the six faces are marked with numbers from 1 to 6 with 1 and 2 appearing on opposite faces. Further, each face is colored either red or yellow with opposite faces always of the same color. Two dice are considered to have the same design if one of them can be rotated to obtain a dice that has the same numbers and colors on the corresponding faces as the other one. Find the number of distinct dice that can be designed.
Solution:
Sol. Arrangement of 3, 4, 5, 6 can be done in ways = 6 ways (using circular permutation)
Coloring can be done in ways
Total designs are ways.
One important point to note here is that we can also get 24 as the answer if we make a mistake.
Let's say we fix 1 and 2 as the top/bottom face of the dice.
Then we are left with 4 distinct numbers to be arranged in the horizontal plane in a circular manner.
Now circular permutation theory implies that there are (4-1)! ways to arrange 4 distinct people around a table.
But we might get confused and apply the necklace/garland logic here and divide it by 2.
That would be wrong.
When we use the necklace logic, we are saying that 3-4-5-6 clockwise and counter-clockwise is same.
Here that's not true.
Because let's say we have this config:
Top-1, Bottom-2,Left-3,Right-4,Front-5,Back-6
Here 3-5-4-6 is the clockwise permutation.
Compare with this:
Top-1, Bottom-2,Left-4,Right-3,Front-6,Back-5
Here 3-5-4-6 is the counter-clockwise permutation.
If they are same we should be able to rotate the first one and get the second one.
But no matter how you rotate, you won't be able to do that.
Q8.
Given a tile and seven dominoes ( tile), find the number of ways of tiling (that is cover without leaving gaps and without overlapping of any two tiles) a rectangle using some of these tiles.
Solution:
Case 1: Use only 2x1 tiles.
Let be the number of ways to tile a board using only dominoes.
Look at the leftmost column(s) of any tiling and split into two mutually exclusive cases:
-
A vertical domino in column 1
|#| <- vertical domino in col 1
|#| | |...| |
Once you place that vertical domino, the rest is a board, which can be tiled in ways.
-
No vertical domino in column 1
Then the two squares in column 1 must each be covered by a horizontal domino. That forces two horizontal dominoes spanning columns 1–2:
##| <- top horizontal covers (1,1)-(1,2)
##| <- bottom horizontal covers (2,1)-(2,2)
| |...| |
After that, what remains is a board, giving possibilities.
These two cases are disjoint and exhaustive, and choosing the first placement uniquely determines the smaller sub-board you must tile. Hence the recurrence:
with bases (empty board) and (one vertical domino).
So is the Fibonacci sequence shifted by one index: .
-
Case 1: Use only 2x1 tiles. Then
.
So domino-only tilings of = . -
Case 2: If we use the single tile, place it covering columns for .
This splits the board into independent strips of sizes and .
Count for a fixed : .
Sum over :
Total tilings .
Q9.
Find the number of triples of positive integers such that
(a) is a prime;
(b) is a product of two primes;
(c) is not divisible by square of any prime and
(d) .
Solution:
Here’s the text from the image:
Sol.
and is not divisible by 4, 9, 25
So can take values:
is prime.
Case 1: When and is prime number.
There are total 14 triples of .
Case 2: When and is prime number.
There are 3 triples of .
From Case I and Case II, total 17 triples of are possible.
Q10.
The sequence is defined by , and , for . Find the number of positive integer divisors of .
Solution:
One way to solve it is to compute:
a1^2 - a0a2 = 7
a2^2 - a1a3 = 49
a3^2 - a2a4 = 343
So
a50^2 - a49a51 = 7^50 which has 51 divisors = answer.
Method 2:
Sol. The sequence , and , and given that ….(1)
Now
…
Method 3:
Since this is a linear homogeneous recurrence equation of order 2 with constant coefficients, see this for how to solve.
asdf
asdf
Comments
Post a Comment