answer.
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
cluponka [151]
2 years ago
15

The HVAC engineer for a company that constructed one of the world’s tallest buildings requested that $500,000 be spent on softwa

re and hardware to improve efficiency of the environmental control system. This is expected to save $10,000 per year for 10 years in energy costs and $700,000 at the end of the 10 years in equipment refurbishment costs. Find the rate of return
Business
1 answer:
Dima020 [189]2 years ago
8 0

Answer:

5.16%

Explanation:

PW=0 equation.

0 = -500,000 + 10,000(P/A, i*,10) + 700,000(P/F, i*,10)

Now let use the estimation procedure to determine i* mean while All income will be regarded as a single F in year 10 so that the P/F factor can be used.

Therefore The P/F factor is selected because most of the cash flow ($700,000) which already fits this factor and errors.

P =$500,000, n =10,

F =10(10,000) + 700,000 = $800,000. .

Now we can state that 500,000 =

800,000(P/F,i,10)(P/F,i,10) = 0.625

Roughly estimated i* is between 4% and 5%.

Let use 5% as the first trial because this approximate rate for the P/F factor is lower than the true value when the time value of money is considered.

At i* =5%, the IRR equation is

0 = -500,000 + 10,000(P/A,5%,10) + 700,000(P/F,5%,10)0 < $6946

The result is positive, indicating that the return is more than 5%.

Let Try i*= 6%.

0 = -500,000 + 10,000(P/A,6%,10) + 700,000(P/F,6%,10)0 > $-35,519

Since the interest rate of 6% is too high, linearly interpolate between 5% and 6%

i* = 5.00 + 6946/(6946 + 35519) = 5.16%

Therefore the RATE OF RETURN is 5.16%

You might be interested in
Dietrick Corporation produces and sells two products. Data concerning those products for the most recent month appear below:
mrs_skeptik [129]

Answer:

b. $69,754  

b. $69,754  

b. $69,754  

b. $69,754  

b. $69,754  

b. $69,754  

b. $69,754  

b. $69,754

Explanation:

contribution = sales - variable cost

for Product B32L:

contribution = sales - variable cost

                     = 46,000 - 13800

                     = $32,200

for Product K84B:

contribution = sales - variable cost

                     = 27,000 - 14,670

                     = $12,330

total sales of the company = 46,000 + 27,000

                                             = $73,000

total contribution of the company = $32,200 + $12,330

                                                         = $44,530

cotribution margin ratio = contribution/sales

                                        = 44530/73000

                                        = 0.61

break even point  = fixed cost/cotribution margin ratio

                              = 42550/0.61

                              = $69,754

Therefore, The The break-even point for the entire company is closest to $69,754.

3 0
1 year ago
Karen Most has a federal tax levy of $2,100.50 against her. If Most is single with two personal exemptions and had a take-home p
GREYUIT [131]
2 because Karen already had done the federal tax levy of 2100.50 so I don’t matter so the answer is 2
5 0
1 year ago
Which career pathway requires that employees have stamina, stress-management skills, confidence, persuasiveness, and specialized
Fofino [41]

Answer:

a. Professional sales and marketing

Explanation:

Sales and marketing team of any company play a vital role in developing business and making it profitable, however, it require lot of hard work, planning, stamina, and stress management, which help the sales and marketing professionals to meet up the company´s target. Sales and marketing are pulse of the company, without it no other department will grow as there will be lack of business. Confidence, persuasiveness and knowledge are key for making sales. A good sales person are the one who knows what is he/she selling, and whom to sell.

8 0
2 years ago
Which of the following statements best characterizes how digital Internet-based streaming is trending?
aev [14]

Answer:

last choice

Explanation:

it is the last choice

3 0
1 year 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
1 year ago
Other questions:
  • The accounting records of Nettle Distribution show the following assets and liabilities as of December 31, 2014 and 2015. Decemb
    6·1 answer
  • The internal monthly magazine and blog at the cosmetics firm Mary Kay serve as ________ for employees; the magazine and blog are
    15·1 answer
  • Read the passage. What should Jake do? What professionalism skills would he be using?
    13·1 answer
  • Tricia, the director of marketing for a global company, is planning the contributions she and her department will make to the or
    10·1 answer
  • At the beginning of 2009, Glass Manufacturing purchased a new machine for its assembly line at a cost of $600,000. The machine h
    5·1 answer
  • 11. Bob Johnson established a Section 529 Savings Plan for his son Robert several years ago. It is now time to pay Robert's firs
    12·1 answer
  • Ratios Analyzing Long-Term Firm Solvency
    11·1 answer
  • You have a subordinate who performs best when he does things because he agrees with your ideas. What type of power should you us
    13·1 answer
  • Green Company is planning to introduce a new product with a 75 percent incremental unit-time learning curve for production in ba
    11·1 answer
  • Kiyara (single) is a 50 percent shareholder of Jazz Corporation (an S Corporation). Kiyara does not do any work for Jazz Corp. J
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!