1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
DerKrebs [107]
3 years ago
7

What is the probability that k is the smallest integer in a subset of four different numbers chosen from 1 through 20 (1 ≤ k ≤ 1

7)?
Mathematics
1 answer:
Korolek [52]3 years ago
6 0
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



You might be interested in
Math order of operations
Novosadov [1.4K]

Answer:

93

Step-by-step explanation:

6 0
3 years ago
what is the degree of the polynomial below? 4x to the third power + 3x to the second power + 6x+5... A. 0 B. 3 C. 1 D. 2
zimovet [89]

we are given

highest exponent is 3

degree is the highest exponent

so, degree is 3

4 0
3 years ago
Read 2 more answers
Caroline spent $41.00 on groceries after using coupons and store discounts. Without the coupons and store discounts, the groceri
AlexFokin [52]

Answer:

18% trust me i got you bro

Step-by-step explanation:

6 0
3 years ago
3 cm 10 cm 10 cm 3cm ​
erik [133]

Answer:

what is the question about the given numbers

8 0
2 years ago
Read 2 more answers
A group of students wanted to investigate the claim that the average number of text messages sent yesterday by
Likurg_2 [28]
First we need to write the null and alternate hypothesis for this case.

Let x be the average number of text message sent. Then

Null hypothesis: x = 100
Alternate hypothesis: x > 100

The p value is 0.0853

If p value > significance level, then the null hypothesis is not rejected. If p value < significance level, then the null hypothesis is rejected.

If significance level is 10%(0.10), the p value will be less than 0.10 and we reject the null hypothesis and CAN conclude that:
The mean number of text messages sent yesterday was greater than 100.

If significance level is 5%(0.05), the p value will be greater than 0.05 and we cannot reject the null hypothesis and CANNOT conclude that:
The mean number of text messages sent yesterday was greater than 100.
7 0
3 years ago
Other questions:
  • 6x^2+7x+2 factor completely
    8·1 answer
  • Help will give brainliest
    7·1 answer
  • The sum of two consecutive odd integers is 132. What are the two integers?
    12·2 answers
  • How to do this question plz answer me step by step plzz plz ​
    11·1 answer
  • What is -13 7/12 + 2 1/2
    7·1 answer
  • Sarah kicked a ball in the air. The function f models the height of the ball (in meters) as a function of time (in seconds) afte
    13·1 answer
  • Which list orders from least to greatest?
    9·1 answer
  • What is the surface area of a rectangular prism whose length= 4 inches, width= 6 inches, and height= 4 inches?
    12·2 answers
  • Apples cost $1.99 per pound.<br><br> How much do 3.25 pounds of apples cost?
    11·1 answer
  • I really need help with this pleaseeee
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!