document.write( "Question 1164972: A major shipping company is planning to purchase new cargo ships. It wants to borrow $1100 million by issuing bonds. The bonds are for a 15-year period with at a rate of 9 percent per year compounded quarterly. Interest is to be paid each quarter to bondholders. How much will the company have to pay in quarterly interest? How much interest will it pay over the 12-year period?\r
\n" ); document.write( "\n" ); document.write( "
\n" ); document.write( "

Algebra.Com's Answer #853500 by CPhill(2189)\"\" \"About 
You can put this solution on YOUR website!
```python
\n" ); document.write( "principal = 1100 * 10**6
\n" ); document.write( "annual_rate = 0.09
\n" ); document.write( "compounding_frequency = 4
\n" ); document.write( "years_period = 12\r
\n" ); document.write( "\n" ); document.write( "quarterly_rate = annual_rate / compounding_frequency
\n" ); document.write( "quarterly_interest = principal * quarterly_rate\r
\n" ); document.write( "\n" ); document.write( "total_quarters_12_years = years_period * compounding_frequency
\n" ); document.write( "total_interest_12_years = quarterly_interest * total_quarters_12_years\r
\n" ); document.write( "\n" ); document.write( "print(f\"{quarterly_interest=}\")
\n" ); document.write( "print(f\"{total_interest_12_years=}\")\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "```\r
\n" ); document.write( "\n" ); document.write( "```text
\n" ); document.write( "quarterly_interest=24750000.0
\n" ); document.write( "total_interest_12_years=1188000000.0\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "```\r
\n" ); document.write( "\n" ); document.write( "To calculate the interest payments for the shipping company's bonds, we use the simple interest formula applied to each compounding period (quarter), as the interest is paid out to bondholders.\r
\n" ); document.write( "\n" ); document.write( "### 1. Quarterly Interest Payment\r
\n" ); document.write( "\n" ); document.write( "The quarterly interest rate is the annual rate divided by the number of quarters in a year.\r
\n" ); document.write( "\n" ); document.write( "* **Principal ():**
\n" ); document.write( "* **Annual Rate ():**
\n" ); document.write( "* **Quarters per year ():** \r
\n" ); document.write( "\n" ); document.write( "**The company will have to pay $24.75 million in quarterly interest.**\r
\n" ); document.write( "\n" ); document.write( "---\r
\n" ); document.write( "\n" ); document.write( "### 2. Interest Paid Over a 12-Year Period\r
\n" ); document.write( "\n" ); document.write( "To find the total interest over 12 years, we multiply the quarterly payment by the total number of quarters in that timeframe.\r
\n" ); document.write( "\n" ); document.write( "* **Number of Quarters:** \r
\n" ); document.write( "\n" ); document.write( "**The company will pay $1,188 million (or $1.188 billion) in interest over the 12-year period.**
\n" ); document.write( "
\n" );