Answer:
y = - 750
Step-by-step explanation:
Given
y = x³y² ← substitute x = - 5, y = - 3 into the expression
= × (- 5)³ × (- 3)²
= × - 125 × 9 ( cancel the 3 and 9 )
= 2 × - 125 × 3
= - 750
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