Q1. Let X = {1,2,...,n}). In how many ways can you choose (r) elements from (X) such that no two chosen elements are consecutive, where 0 <= r <= (n+1)/2. S1. Answer: (n-r+1)c(r) Solution here. Q2. In how many ways can three numbers in arithmetic progression (A.P.) be selected from the set (1,2...n)? S2. Method 1: a,b,c in A.P. => a,c are both even or both odd. b = (a+c)/2 So if we pick 2 even or 2 odd numbers, we will find a number between them to complete the A.P. Case 1: n is even. n = 2m. m odd and m even numbers. Pick 2 even: mC2 Pick 2 odd: mC2 Total: 2 * mC2 = m(m-1) = n/2(n/2-1) = n(n-2)/4 Case 2: n = 2m+1 m+1 odd and m even numbers. Total ways: (m+1)C2 + mC2 = 1/2[m.(m+1) + m.(m-1)] = m/2[2m] = m^2 = (n-1)^2/4 Method 2: When n is even: You can pick an A.P. with d = 1 as 1,2,3 2,3,4 .... n-2,n-1,n d = 1 => n-2 ways to pick the first term d = 2 => 1,3,5 2,4,6 ... n-4,n-2,n => n-4 ways .... For e.g. n=6, max d = 2(1,3,5 2,4,6) n = 8, max d = 3(1,4,7 2,5,8) n = 1...