I got c, but it could be wrong
U find 1.5 on the bottom line and when u find it, go up until u reach 2 on the side line
Answer:
When we have a set of N elements, the number of combinations of K elements (such that N ≤ K) from these N elements is:

Then if we have 8 different types of carpet, and we want to see how many different samples of 3 types we can choose, we just need to replace N by 8, and K by 3 in the above equation:

So there are 56 different samples.
Now we can do the same, but this time we want to use 5 types of carpet, then we will have K = 5.

Again, we have 56 different samples.
Answer:
Step-by-step explanation:
Let's do this in Python
day = 1
balance = 0
deposit = 0.01 # first deposit is 1 penny
while balance < 1000000: # execute the loop as long as balance is less than a million dollar
balance += deposit
deposit = deposit * 2 # double the deposit for the next time
day += 1 # add one to day for the next day
print(day) # print out result once loop ends