| |
How many ordered triplets (a, b, c) of positive odd integers satisfy a + b + c = 23? |
| |
let a = 2k - 1
b = 2k` - 1
c = 2k`` - 1
where k, k` , k`` >=1
substituting
2k + 2k` + 2k`` - 3 = 23
2( k + k` + k`` ) = 26
k + k` + k`` = 13
number of poitive solutions is given by C(n-1, r-1)
C(12, 2) = 66 ans
|
| |
a+b+c=23 let a=2p+1, b=2q+1, 2r+1 2p+2q+2r+3=23 2p+2q+2r=20 p+q+r=10 positive integral solutions=C(10,3) |
| |
hi harendra, i think u did a lil mistake
since 2p +1 u have taken p will take all values including 0
p+q+r = 10
no of non negative solutions is C(n+r-1, r-1)
so C(10+3-1, 3-1)
C(12,2) which is equivalent to my previous solution |