1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Neporo4naja [7]
2 years ago
6

Let r be a bank's interest rate in percent per year (APR). An initial amount of money P, also called as principal, will mature t

o an amount of P(1+r/100)^n after n years have passed. Write a Python program that takes P, r, and n as inputs from the user and provides as output the matured value after n years. For example if the user provides P, r, and n as 1000 0.95 and 5 .Your program must apply the interest-rate formula and provide 1048.4111145526908 as the output.
Engineering
1 answer:
Liono4ka [1.6K]2 years ago
7 0

Answer:

See explanation below.

Explanation:

For this case the program needs to take the inputs as P,r and n and the output would be as A and printed on the system. The code is:

# Inputs

P = float(input("Enter the present value : "))  

r = float(input("Enter your APR : "))  

n = float(input("Enter the number of years : ") )

# Output

A = P*(1 +(r/100))**n

print("The future values is:", A)  

And the result obtained is:

Enter the present value : 1000

Enter your APR : 0.95

Enter the number of years : 5

The future values is: 1048.4111145526908

You might be interested in
Products that are in the process of being manufactured but are not yet complete are called:
vazorg [7]

Answer:

Those products are generally called Work in Process WIP

Explanation:

Work in process (WIP), or work in progress (WIP), goods in process, or in-process inventory in a manufacturing industry/company refer to the company's partially finished goods waiting for completion and eventual sale or the value of these items.

These items are either just being produced or require further processing (like purification, separation, packaging or handling) in a queue or a buffer storage.

6 0
3 years ago
214Bi83 --> 214Po84 + eBismuth-214 undergoes first-order radioactive decay to polonium-214 by the release of a beta particle,
Zolol [24]

Answer:

(C) ln [Bi]

Explanation:

Radioactive materials will usually decay based on their specific half lives. In radioactivity, the plot of the natural logarithm of the original radioactive material against time will give a straight-line curve. This is mostly used to estimate the decay constant that is equivalent to the negative of the slope. Thus, the answer is option C.

3 0
2 years ago
Read 2 more answers
During January, at a location in Alaska winds at -20°C can be observed, However, several meters below ground the temperature rem
maw [93]

Answer:

a) \eta_{th} = 10.910\,\%, b) Yes.

Explanation:

a) The maximum thermal efficiency is given by the Carnot's Cycle, whose formula is:

\eta_{th} =\left(1-\frac{253.15\,K}{284.15\,K}  \right) \times 100\,\%

\eta_{th} = 10.910\,\%

b) The claim of the inventor is possible since real efficiency is lower than maximum thermal efficiency.

4 0
3 years ago
Based on experimental observations, the acceleration of a particle is defined by the relationa = -( 0.1 + sin(x/b) ),where a and
yKpoI14uk [10]

Answer:

a) v = +/- 0.323 m/s

b) x = -0.080134 m

c) v = +/- 1.004 m/s

Explanation:

Given:

                             a = - (0.1 + sin(x/b))

b = 0.8

v = 1 m/s @ x = 0

Find:

(a) the velocity of the particle when x = -1 m

(b) the position where the velocity is maximum

(c) the maximum velocity.

Solution:

- We will compute the velocity by integrating a by dt.

                           a = v*dv / dx =  - (0.1 + sin(x/0.8))

- Separate variables:

                           v*dv = - (0.1 + sin(x/0.8)) . dx

-Integrate from v = 1 m/s @ x = 0:

                          0.5(v^2) = - (0.1x - 0.8cos(x/0.8)) - 0.8 + 0.5

                          0.5v^2 =  0.8cos(x/0.8) - 0.1x - 0.3

- Evaluate @ x = -1

                          0.5v^2 = 0.8 cos(-1/0.8) + 0.1 -0.3

                          v = sqrt (0.104516)

                          v = +/- 0.323 m/s

- v = v_max when a = 0:

                           -0.1 = sin(x/0.8)

                             x = -0.8*0.1002

                             x = -0.080134 m

- Hence,

                            v^2 = 1.6 cos(-0.080134/0.8) -0.6 -0.2*-0.080134

                            v = sqrt (0.504)

                            v = +/- 1.004 m/s

4 0
3 years ago
An example of Ferrous alloy is Brass a)-True b)-False
djyliett [7]

Answer: False

Explanation: No, brass is not a ferrous alloy.  

      Ferrous alloys are those alloy which contain iron like cast iron, steel, strain-less steel, high carbon steel. Brass on the other hand does not contain any composition. of iron hence it can not be considered as a ferrous alloy. Brass comes under the category of non- ferrous made with a composition of copper and zinc, however their proportion is not strict and we can add other elements like aluminium or lead to alter its durability or corrosiveness.  

5 0
3 years ago
Other questions:
  • Which of the following is likely to have the suffix "" after the domain name in its URL?
    7·2 answers
  • Please help me with this question​
    8·1 answer
  • In a reversible process both the system and surrondings can be returned to their initial states. a)-True b)-False
    14·1 answer
  • Why Your first project as the new web designer at Smart Design is to increase web traffic to help boost web orders. Before you b
    6·1 answer
  • Why do engineers (and others) use the design process?
    13·1 answer
  • The following displacement (cm), output (V) data have been recorded during a calibration of an LVDT. Displacement (cm), output (
    15·1 answer
  • Stakeholders are people or organizations who do what?
    10·2 answers
  • What does abbreviation vom stand for
    14·2 answers
  • Characteristics of 3 types of soil​
    10·1 answer
  • The first thing you should do is develop a ____________________ to determine what vehicle you can afford.
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!