Please answer it in Python Aline plans to open an account at Argento Bank, but first she wants to know if it will pay off. On such an account, the interest is 5% per year, and the bank levies a fixed annual cost of 11 euros. The capital of yearn+ 1 is therefore obtained by the formula un+1 = un x 1.05 - 11, where one denotes the capital in year n. - function (nb_years, capital_debut) that returns the capital in euros that Aline would have in such an account after nb_years by initially placing a capital equal to capital_debut (in euros). def capital(nb_years.capital debut):

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Please answer it in Python
Aline plans to open an account at Argento Bank, but first she wants to know if it will pay off. On such
an account, the interest is 5% per year, and the bank levies a fixed annual cost of 11 euros. The
capital of year n + 1 is therefore obtained by the formula un+1 = un x 1.05 – 11, where one denotes
the capital in year n.
- function (nb_years, capital_debut) that returns the capital in euros that Aline would have in such an
account after nb_years by initially placing a capital equal to capital_debut (in euros).
def capital(nb_years.capital debut):
capital = capitaldebut
i=0
while i <= nb vears:
capital = capital*1.05 - 11
i=i+1
return capital
#capital(3,1000) => return 1122.9475
- function gagne_argent(nb_years, capital_debut) that returns True if the capital after nb_years on
such an account is greater than or equal to the starting capital.
def gagne_argent(nb_years,capital_debut):
capital = capital_debut
for i in range(nb_years):
capital = capital*1.05 - 11
return capital>=capital_debut
#gagne_argent(20,200) => False
Write a function capital debut min(nb_years) that returns the minimum capital that must be initially
put into the account so that after nb years it is greater than or equal to the starting capital. It will be
assumed here that the starting capital is always an integer. For example, capital_debut_min(7) returns
220.
Transcribed Image Text:Please answer it in Python Aline plans to open an account at Argento Bank, but first she wants to know if it will pay off. On such an account, the interest is 5% per year, and the bank levies a fixed annual cost of 11 euros. The capital of year n + 1 is therefore obtained by the formula un+1 = un x 1.05 – 11, where one denotes the capital in year n. - function (nb_years, capital_debut) that returns the capital in euros that Aline would have in such an account after nb_years by initially placing a capital equal to capital_debut (in euros). def capital(nb_years.capital debut): capital = capitaldebut i=0 while i <= nb vears: capital = capital*1.05 - 11 i=i+1 return capital #capital(3,1000) => return 1122.9475 - function gagne_argent(nb_years, capital_debut) that returns True if the capital after nb_years on such an account is greater than or equal to the starting capital. def gagne_argent(nb_years,capital_debut): capital = capital_debut for i in range(nb_years): capital = capital*1.05 - 11 return capital>=capital_debut #gagne_argent(20,200) => False Write a function capital debut min(nb_years) that returns the minimum capital that must be initially put into the account so that after nb years it is greater than or equal to the starting capital. It will be assumed here that the starting capital is always an integer. For example, capital_debut_min(7) returns 220.
Expert Solution
steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY