970 views
2 votes
2 votes
In an experiment 4 different colored dice are thrown simultaneously and numbers are added find number of distinct experiments such that total is 18?

2 Answers

1 votes
1 votes

We require the no of solution of the equation  X1+X2+X3+X4=18 where 1<=X1,X2,X3,X4<=6.
You have form  all non increasing solution of the above eq and permuate them.

Non increasing order of solution No of permutation possible for this solution
6 6 5 1 12
6 6 4 2 12
6 6 3 3 6
6 5 4 3 24
6 5 2 5 12
6 4 4 4 4
5 5 4 4 6
5 5 5 3 4
Total 80

This method is brute force method and its highly prone to careless mistake.
For ans verification you can write a simple programe(https://ideone.com/E9Vym3)

Related questions

1 votes
1 votes
0 answers
1
Pineapple asked Mar 23, 2023
278 views
How many ways are there to distribute five distinguishable objects into three indistinguishable boxes?
5 votes
5 votes
1 answer
3
dd asked Jun 8, 2020
1,211 views
How many pairs $(x,y)$ such that $x+y <= k$, where x y and k are integers and $x,y>=0, k 0$.Solve by summation rules.Solve by combinatorial argument.
0 votes
0 votes
0 answers
4
sandeep singh gaur asked May 31, 2019
254 views
use mathematical induction to prove the sum rule for m tasks from the sum rule for two tasks.