237 views
0 votes
0 votes
Find the integer value of x satisfying the inequality$\binom{10}{x-1} < 2\binom{10}{x}$ .

2 Answers

1 votes
1 votes
$\frac{10!}{(x-1)!(10-(x-1))!}$  < 2$\frac{10!}{(x)!(10-x)!}$

$\frac{1}{(x-1)!(11-x)!}$           < $\frac{2}{(x)!(10-x)!}$

$\frac{1}{(11-x)}$                     < $\frac{2}{x}$

 x < 2(11-x)  =>   x < 22-2x  =>   3x < 22   =>   x < $\frac{22}{3}$
0 votes
0 votes
$\frac{10!}{(10-x+1)!*(x-1)!}<2\frac{10!}{(10-x)!*(x)!}$

$\frac{10!}{(10-x+1)*(10-x)!*(x-1)!}<2\frac{10!}{(10-x)!*(x)*(x-1))!}$

cancelling out common terms we get

$\frac{1}{(10-x+1)}$ < $\frac{2}{x}$

Equating it we get

x<$\frac{22}{3}$

so x>1 and x< 7

x={1,2,3,4,5,6,7}

Related questions

2 votes
2 votes
1 answer
1
DSMaurya asked Mar 25, 2017
470 views
In how many ways can seven girls be seated at a round table so that two particular girls are separated?(a) 260(b) 320(c) 480(d) 560
1 votes
1 votes
1 answer
2
DSMaurya asked Mar 25, 2017
1,005 views
In how many different ways can 8 different shirts be distributed among 4 different people so that each receives 2 shirts?(a) 2850(b) 2680(c) 2520(d) 1908
1 votes
1 votes
1 answer
3
KISHALAY DAS asked Oct 13, 2016
808 views
The maximum number of subnets in class C using the mask 255.255.255.0?a) 256 b)2^16 c)1 d)0
0 votes
0 votes
0 answers
4
Sajal Mallick asked Nov 27, 2023
183 views
As we have to select maximal set of “non overlapping” activities. So like job scheduling algo of greedy we can solve it. So according to that complexity must be O(n l...