Lecture 3 & 4
Lecture 3 & 4
Notation:
⊆ : subset relation
< : proper subset relation
NOTE : < is overloaded for both less than relation and proper subset relation.
UNDERSTAND THE CONteXT ON YOUR OWN
###################################################################################
###################################################################################
5 August, 2024
f) prove that the given proposition is true for every for all disjoint and
exhasutive cases. this is called proof by cases
i. fa x[P(x)] : choose an arbitrary x and prove P(x). This implies that just by
knowing x (ie only x and not some other extra information), we can conclude P(x).
in other words x is sufficient for P(x)
ii. te x[P(x)] : show some x such that P(x) or assume that fa x[~P(x)] and show
contradiction
NOte: in maths, existence proofs more or less are always of the form,
te x[P(x)] -> te y[Q(y)]
eg. there exists a bijection between NxN and N, Show that there is a bijection
between NxNxN and N
"QUESTIONS"
1. Define H_n = Σ(1,n) 1/r. Prove that H_exp(2,n) >= 1 + n/2 (that is H_n is lower
bound by log n ie, OMEGA(log n))
2. fa n, show that Σ(for m>0)({i1,i2,i3...,im}⊆{1,2,3...,n}) 1/(i1.i2.i3...im) = n
###################################################################################
###################################################################################
Lecture 4
7 August, 2024
4. A square is removed from a chessboard. prove that the chessboard can be tiled
perfectly by an L-shaped piece (of 3 squares)
5. We have balls numbered from {0,1,2...n}. We have an infinte number of balls for
each number. We also have an empty box.
Now some finite number of balls are placed in the box. The game now begins,
In each round, the player can draw a ball from the box:
1. If the ball is numbered 0, it is discarded
2. If the ball is numbered k>0, it is discarded and a finite number of ball from
the infinte stash are added to the box such that the maximum
of the numbers on the ball is less than k
6. A king has a court of wise men. To check the wit of his court, he makes them
play a game.
Each couritier is given a hat to wear coloured either white or black such that
each of them can see the color of others hats but their own.
Additionally, the king says that there is atleast one black hat.
Now each of them is tasked to find the color of their own hat.
Show that the game ends in the kth round if their are k black hats in the court
'counting techniques
'rule of product
experiment A : m outcomes
experiment B : n outcomes
then if, experiment A and B are performed simultaneously, then there are m*n
outcomes
CONTINUED IN LECTURE 5