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
uysha [10]
3 years ago
6

You bought one of Lambert Sandblasting Company's 15-year bonds one year ago for $960. These bonds pay 7 percent annually, have a

face value of $1,000, and mature 14 years from now. Suppose you decide to sell your bond today when the required return on the bonds is 8 percent. The inflation rate over the past year was 2.7 percent. What was your total real return on this investment?
Business
1 answer:
maksim [4K]3 years ago
8 0

Answer:

Real return on investment: 22.9465%

Explanation:

Okay let's explain each concept we have given:

<em>Face Value</em>                                         $1,000

This is the ammount Lambert will pay at maturity

Purchase Value                                   $  960

This is the Ammount we pay for the bond

<em>Market Value of the bond today         $   ???</em>

This is what we need to determinate to see the return we got

Once we got the market Value we will do:

Market Value / Purchase Value   - 1 = rate of return

Now the <em>market value today will be the present value of the bond,</em> and the bond has the following data:

  • Mature in 14 year
  • bond rate 7% annualy.

So each year we receive the 7% of the face value ($1,000) = $70

And at the end of the bond life we receive 1,000

We need to bring this numbers at present day using the real market rate, because the economy is having inflation:

market rate  8%

inflation rate 2.7%

real rate:  

(1+rate)/(1+inflation) -1 = real rate

\frac{1.08}{1.027} -1 = real rate

real rate = 5.16%

To know the present value of the bond we will have to consider:

  • present value of an annuity of 70$ during 14 year at a rate of 5.16% =
  • present value of the 1,000 that will be pay at maturity at a rate of 5.16%

<em>The annuity will be </em>

70 * \frac{1-(1+0.0516)^-14}{0.0516} = 685.87

C * \frac{1-(1+rate)^-time}{rate} = present value

$685,87

<em>The present value of the 1,000 will be</em>  

face value/(1+rate)^time

1,000/(1+0.0516)^14 = $494,42

for a total of $1.180,29

Now we will calculate the real return on the investment:

we receive 1.180,29 for 960 so the rate is

1.180,29 /960 - 1 = 0.229465 =  22.9465%

You might be interested in
Which is the best option for people who need the items immediately but cannot pay cash now?
professor190 [17]
<h2>Answer</h2>

Buy on Credit

<h3>Explanation</h3>

When in a liquidity problem and items have to be bought, buying on credit seems to be the best option. Buying on credit allows immediate ownership of required items whereas the money can be paid later as per the credit policy and terms. This permits the consumer to take the advantage of item ownership with delayed payment hence double advantage.

7 0
3 years ago
Read 2 more answers
Teenage entrepreneurship is growing especially in the _____ industry
taurus [48]
Teenage entrepreneurship is growing especially in the health industry and saving the environment.
6 0
3 years ago
Read 2 more answers
This program will store roster and rating information for a soccer team. coaches rate players during tryouts to ensure a balance
Vedmedyk [2.9K]

Answer:

Explanation:

#include <iostream>

#include <vector>

using namespace std;

int main() {

   vector<int> jerseyNumber;

   vector<int> rating;

   int temp;

   for (int i = 1; i <= 5; i++) {

       cout << "Enter player " << i

            << "'s jersey number: ";

       cin >> temp;

       jerseyNumber.push_back(temp);

       cout << "Enter player " << i

            << "'s rating: ";

       cin >> temp;

       rating.push_back(temp);

       cout << endl;

   }

   cout << "ROSTER" << endl;

   for (int i = 0; i < 5; i++)

       cout << "Player " << i + 1 << " -- "

            << "Jersey number: " << jerseyNumber.at(i)

            << ", Rating: " << rating.at(i) << endl;

   char option;

   '

   while (true) {

       cout << "MENU" << endl;

       cout << "a - Add player" << endl;

       cout << "d - Remove player" << endl;

       cout << "u - Update player rating" << endl;

       cout << "r - Output players above a rating"

            << endl;

       cout << "o - Output roster" << endl;

       cout << "q - Quit" << endl << endl;

       cout << "Choose an option: ";

       cin >> option;

       switch (option) {

           case 'a':

           case 'A':

               cout << "Enter a new player's"

                    << "jersey number: ";

               cin >> temp;

               jerseyNumber.push_back(temp);

               cout << "Enter the player's rating: ";

               cin >> temp;

               rating.push_back(temp);

               break;

           case 'd':

           case 'D':

               cout << "Enter a jersey number: ";

               cin >> temp;

               int i;

               for (i = 0; i < jerseyNumber.size();

                    i++) {

                   if (jerseyNumber.at(i) == temp) {

                       jerseyNumber.erase(

                               jerseyNumber.begin() + i);

                       rating.erase(rating.begin() + i);

                       break;

                   }

               }

               break;

           case 'u':

           case 'U':

               cout << "Enter a jersey number: ";

               cin >> temp;

               for (int i = 0; i < jerseyNumber.size();

                    i++) {

                   if (jerseyNumber.at(i) == temp) {

                       cout << "Enter a new rating "

                            << "for player: ";

                       cin >> temp;

                       rating.at(i) = temp;

                       break;

                   }

               }

               break;

           case 'r':

           case 'R':

               cout << "Enter a rating: ";

               cin >> temp;

               cout << "\nABOVE " << temp << endl;

               for (int i = 0; i < jerseyNumber.size();

                    i++)

                   if (rating.at(i) > temp)

                       cout << "Player " << i + 1

                            << " -- "

                            << "Jersey number: "

                            << jerseyNumber.at(i)

                            << ", Rating: "

                            << rating.at(i) << endl;

               break;

           case 'o':

           case 'O':

               cout << "ROSTER" << endl;

               for (int i = 0; i < jerseyNumber.size();

                    i++)

                   cout << "Player " << i + 1 << " -- "

                        << "Jersey number: "

                        << jerseyNumber.at(i) << ", Rating: "

                        << rating.at(i) << endl;

               break;

           case 'q':

               return 0;

           default:

               cout << "Invalid menu option."

                    << " Try again." << endl;

       }

   }

}

4 0
3 years ago
Mcdougald Corporation is a service company that measures its output by the number of customers served. The company has provided
ANEK [815]

Answer:

The spending variance for "Employee salaries and wages" for March would have been closest to $1,200F .

Explanation:

Customers served (q)

Employee salaries and wages ($58,400 + $1,000q)

The spending variance for "Employee salaries and wages" for March would have been closest to

         Actual Results      Flexible Budget     Revenue and Spending Variances

(q)          26                 26      

($58,400 + $1,000q) $ 83,200 $ 84,400    $1,200F

6 0
3 years ago
Payne, Inc., a nonpublicly traded company, implemented a defined benefit pension plan for its employees on January 2, year 2. Th
Dovator [93]

Answer:

b. $25,000

Explanation:

For computing the pension liability amount, we need to do apply the formula which is shown below:

= Projected benefit obligation - Fair value of plan assets

= $103,000 - $78,000

= $25,000

The net periodic pension cost and the employer's contribution is not relevant. So, these items are ignored and hence not included in the computation part.

The excess amount is shown as a pension liability.

7 0
3 years ago
Other questions:
  • "be sure to identify any additional bases underlying your forecast and any assumptions."
    10·1 answer
  • Using the average score to describe a sample is an example of _____.
    15·1 answer
  • A persons driving record will affect the automobile insurance premium. True or false
    7·1 answer
  • Romeo Corporation reports the following for the year: Finished goods inventory, January 1 $ 2,500 Finished goods inventory, Dece
    15·1 answer
  • Number the following in the order of the flow of manufacturing costs for a company.
    15·1 answer
  • Here are some important figures from the budget of Crenshaw, Inc., for the second quarter of 2019. April May June Credit sales $
    10·1 answer
  • Eleanor is a divorce attorney who practices law in Dallas. She wants to join the American Divorce Lawyers Association (ADLA), a
    7·1 answer
  • Conduct online research and find three different types of loans that are available to consumers. For each loan, describe its fea
    9·1 answer
  • Một hãng sản xuất có hàm cầu là:Q=130-10Pa) Khi giá bán P=9 thì doanh thu là bao nhiêu?Tính độ co giãn của cầu theo giá tại mức
    13·1 answer
  • The board of directors is charged with protecting the rights of
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!