X1=(-2-√22)/6
X2=(-2+√22)/6
B. y = –x + 5
C. x + y = 5
D. 4y = –4x + 20
this as a ratio in its simplest form.*
1:1/3
O 1:2
O 1:3
O 14
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