108÷4=27
however it doesnt state in the question if 108 is a round of golf for each or just 1!!
Answer:
See explanation
Step-by-step explanation:
1.

2.

3.

4.

5.

6.

7.

8.

9.

10.

11.

12.

13.

The last payment would be $30. This is computed by solving first the total amount of computer including 8% tax, so 1,250 times 8% is equal to 100, then 100 plus 1,250 is 1,350. Then 1,350 will be divided by 120, which is equal to 11.25. Getting the 0.25, from 11.25, multiply be 120 (0.25 times 120), is equal to $30.
A would equal 36 for this equation.
Hello,
p=4845/116280=0.041666....
=================================
DIM k AS INTEGER, nFav AS LONG, nTot AS LONG, a AS INTEGER, b AS INTEGER, c AS INTEGER, d AS INTEGER
nTot = 0
nFav = 0
FOR k = 1 TO 17
FOR a = k + 1 TO 18
FOR b = a + 1 TO 19
FOR c = b + 1 TO 20
nFav = nFav + 1
PRINT nFav; k; a; b; c
NEXT c
NEXT b
NEXT a
NEXT k
nTot = 0
FOR a = 1 TO 20
FOR b = 1 TO 20
IF b <> a THEN
FOR c = 1 TO 20
IF c <> b AND c <> a THEN
FOR d = 1 TO 20
IF d <> c AND d <> b AND d <> a THEN
nTot = nTot + 1
PRINT nTot; a; b; c; d
END IF
NEXT d
END IF
NEXT c
END IF
NEXT b
NEXT a
PRINT "nFav="; nFav, "nTot="; nTot, "prob="; nFav / nTot
END