Answer:
Step-by-step explanation:
hello,
I understand that there are only 4 cards and then the player draw a card out of the 4 cards, replace it so the second draw is still out of the 4 cards
<u>How many ways can you draw two cards?</u>
as the first card is replaced, this is 4*4=16
so there is 16 possibles ways
hearts hearts
hearts clubs
hearts diamonds
hearts spades
clubs hearts
clubs clubs
clubs diamonds
clubs spades
diamonds hearts
diamonds clubs
diamonds diamonds
diamonds spades
spades hearts
spades clubs
spades diamonds
spades spades
<u>out of these 16 ways, how many have same colour for both cards?</u>
I assume that there are only two colours Red and Black, so we can have
only 8 ways so the first probability is 8/16 = 1/2
<u>out of these 16 ways, how many are red ace first and black ace?</u>
There are 4 ways so the probability is 4/16 = 1/4
hope this helps
Answer:
648
Step-by-step explanation:
Running this in Python, with the code as follows,
import math
cur_numbers = [0] * 3
num = 0
for i in range(100, 1000):
cur_numbers[2] = i % 10
i = math.floor(i/10)
cur_numbers[1] = i % 10
i = math.floor(i/10)
cur_numbers[0] = i % 10
if(len(set(cur_numbers)) == 3):
num += 1
print(cur_numbers)
print(num), we get 648 as our answer.
Another way to solve this is as follows:
There are 9 possibilities for the hundreds digit (1-9). Then, there are 10 possibilities for the tens digit, but we subtract 1 because it can't be the 1 same digit as the hundreds digit. For the ones digit, there are 10 possibilities, but we subtract 1 because it can't be the same as the hundreds digit and another 1 because it can't be the same as the tens digit. Multiplying these out, we have
9 possibilities for the hundreds digit x 9 possibilities for the tens digit x 8 possibilities for the ones digit = 648
Answer:
256.4
Step-by-step explanation: