Calculate the annual lease payments due from the lessor, and prepare lease amortization schedule, for each...

Calculate the annual lease payments due from the lessor, and prepare lease amortization schedule, for each of the following scenarios:

Scenario                                                                                      A                          B                         C

Lease Term                                                                         10 Years               20 Years               4 Year

Fair Value of Lease Asset                                              $600,000             $900,000             $200,000

Lesse's Incremental Borrowing Rate                                         12%              10%                    10%

Lessor's Rate of Return (known by lessee)                             11%                  9%                    12%

Payment Due                                                                     End of Year            End of Year         End of Year

In: Accounting

Lab background: I set up two styrofoam cups attached together by an aluminum transfer bar (a...

Lab background:


I set up two styrofoam cups attached together by an aluminum transfer bar (a conductor). One cup contained 200g of boiling water, while the other cup contained only 100g of ice water. Every two minutes, I took the temperature of both the cups. There were two slits on the top of the enclosed styrofoam cups to allow a thermometer to take the temperature of both of the contents in the two cups. It seems as though, the hot water LOST heat nearly twice as fast as the cold water gained heat.


Question 1: Why did this happen??? Does it have to do with the different volumes/ surface area?


Question 2: I later calculated the heat lost by the hot water and the heat gained by the cold water (which, technically, should be the same consiering the laws of thermodynamics). Heat lost= 27720 J and heat gained= 11340 J. So they are clearly not the same ... what 2 reasons could cause the difference???


Questions 3: How do I estimate at which both containers should stabilize???


thanks

In: Physics

“I’m not sure we should lay out $345,000 for that automated welding machine,” said Jim Alder,...

“I’m not sure we should lay out $345,000 for that automated welding machine,” said Jim Alder, president of the Superior Equipment Company. “That’s a lot of money, and it would cost us $93,000 for software and installation, and another $58,800 per year just to maintain the thing. In addition, the manufacturer admits it would cost $56,000 more at the end of three years to replace worn-out parts.”

“I admit it’s a lot of money,” said Franci Rogers, the controller. “But you know the turnover problem we’ve had with the welding crew. This machine would replace six welders at a cost savings of $123,000 per year. And we would save another $8,400 per year in reduced material waste. When you figure that the automated welder would last for six years, I’m sure the return would be greater than our 14% required rate of return.”

“I’m still not convinced,” countered Mr. Alder. “We can only get $21,500 scrap value out of our old welding equipment if we sell it now, and in six years the new machine will only be worth $39,000 for parts. But have your people work up the figures and we’ll talk about them at the executive committee meeting tomorrow.”

Click here to view Exhibit 13B-1 and Exhibit 13B-2, to determine the appropriate discount factor(s) using tables.

Required:

1. Compute the annual net cost savings promised by the automated welding machine.

2a. Using the data from (1) above and other data from the problem, compute the automated welding machine’s net present value.

2b. Would you recommend purchasing the automated welding machine?

3. Assume that management can identify several intangible benefits associated with the automated welding machine, including greater flexibility in shifting from one type of product to another, improved quality of output, and faster delivery as a result of reduced throughput time. What minimum dollar value per year would management have to attach to these intangible benefits in order to make the new welding machine an acceptable investment?

In: Accounting

Explain at least one practical value of classifying an organization's total costs into direct and indirect...

Explain at least one practical value of classifying an organization's total costs into direct and indirect costs.

In: Finance

Consider the following code. Explain what this code does and determine the output. Let us discuss....

Consider the following code. Explain what this code does and determine the output. Let us discuss.

#include <iostream>
using namespace std;
int top;
void check (char str[ ], int n, char stack [ ])
{
for(int i = 0 ; i < n ; i++ )
{
if (str [ i ] == ‘(’)
{
top = top + 1;
stack[ top ] = ‘ ( ’;
}
if(str[ i ] == ‘)’ )
{
if(top == -1 )
{
top = top -1 ;
break ;
}
else
{
top = top -1 ;
}
}
}
if(top == -1)
cout << “String is balanced!” << endl;
else
cout << “String is unbalanced!” << endl ;
}

int main ( )
{

char str[ ] = { ‘(‘ , ‘a’ , ‘+’, ‘ ( ’, ‘b ’ , ‘-’ , ‘ c’ ,‘)’ , ‘ ) ’} ;


char str1 [ ] = { ‘(’ , ‘(’ , ‘a’ , ‘ + ’ , ‘ b’ , ‘)’ } ;
char stack [ 15 ] ;
top = -1;
check (str , 9 , stack ); //Passing balanced string
top = -1 ;
check(str1 , 5 , stack) ; //Passing unbalanced string

}

In: Computer Science

Javascript/HTML/CSS Problem (Only use pure javascript, DO NOT USE ANY JAVASCRIPT FRAMEWORKS) Create a non-predictive T9-like...

Javascript/HTML/CSS Problem

(Only use pure javascript, DO NOT USE ANY JAVASCRIPT FRAMEWORKS)

Create a non-predictive T9-like keypad. For those who do not know what a T9 keypad looks like, use the following shell in an html file to get a sense of what it looked like on pre-smart cellular phones:


<h3>T9 Keypad</h3>
<input id="in" type="text"/>
<br>
<button>abc</button>
<button>def</button>
<br>
<button>ghi</button>
<button>jkl</button>
<button>mno</button>
<br>
<button>pqrs</button>
<button>tuv</button>
<button>wxyz</button>

<script>
// your code here
</script>
How it functions for the assignment:
* If a button contains a letter you want to type, click on the button N number of times associated to the order the letters are in. So if you wanted "c", you push the second button 3 times.
* If you push the button more than the number of letters in the button, it will wrap-around and return the letter after. For example, clicking the first button 5 times returns "b".
* (Bonus 5 points) The input field only shows the letter once you've completed a sequence of < 500 ms clicks. If you stop clicking for > 500 ms, the letter associated with the number of clicks so far, is appended to the input string.

In: Computer Science

Suppose we have a dataset DD in a regression problem. What will happen to the in-sample...

Suppose we have a dataset DD in a regression problem.

  1. What will happen to the in-sample error of linear regression using polynomials of degree dd as d→∞d→∞?

  2. What will happen to the out-of-sample error of linear regression as dd increases?

You can use the output of the code below to help you form your answer.

CODE BELOW:

xmin,xmax = 0,4*np.pi
x = np.linspace(xmin,xmax,1000)
D = 14

N = 100
shuff = np.random.permutation(len(x))
x_pts = np.array(sorted(x[shuff][:N]))

K = 200
train_vals = np.zeros(D*K).reshape(K,D)
test_vals = np.zeros(D*K).reshape(K,D)
noise = np.random.randn(N)
y = np.sin(x_pts)+ noise/7

for k in range(K):
    shuff = np.random.permutation(len(x))
    x_pts = np.array(sorted(x[shuff][:N]))
    noise = np.random.randn(N)
    y = np.sin(x_pts)+ noise/7
    for i,deg in enumerate(range(D)):
        X = np.ones(N*deg).reshape(N,deg)
        for j in range(1,deg):
            X[:,j] = x_pts**j
        X_train,X_test,y_train,y_test = test_train_split(X,y,0.13)

        w = linear_fit(X_train,y_train)

        g_train = linear_predict(X_train,w)
        g_test = linear_predict(X_test,w)

        r_train = RMSE(g_train,y_train)
        r_test = RMSE(g_test,y_test)
        train_vals[k][i] = r_train
        test_vals[k][i] = r_test

tr_vals = np.mean(train_vals,axis=0)
te_vals = np.mean(test_vals,axis=0)

plt.plot(range(D),tr_vals)
plt.title("In sample error as a function of model complexity")
plt.xlabel("Polynomial degree")
plt.ylabel("RMSE")
plt.show()
plt.title("Out of sample error as a function of model complexity")
plt.plot(range(D),te_vals)
plt.xlabel("Polynomial degree")
plt.ylabel("RMSE")

plt.axis([0,D,0,2])
plt.show()

In: Computer Science

The purpose of this discussion activity is two-fold. The first is to give you (and me)...

The purpose of this discussion activity is two-fold. The first is to give you (and me) a chance to get to know one another, and the second is to share our ideas around the social determinants of health and how this may impact on our consumers of healthcare.

You are required to post a response to the following questions:

1. What is your name?

2. What is your favourite hobby/past time?

3. From your work this week list one of the key social determinants of health

4. For that social determinant of health describe how this may impact on a consumers health and wellbeing.

Please try to keep your responses to a max of 300 words. This will help keep you focused and concise and won't create hours of reading for your peers. As part of this task you must use at least 3 references to support your information and reference using APA 7th Edition.

In: Nursing

Draw a picture illustrating the following fact pattern: Company A is exchanging its patent for a...

Draw a picture illustrating the following fact pattern: Company A is exchanging its patent for a building in Michigan, plus $750,000 cash, from Company B. Company B has taken out a loan for $750,000 from Sub Bank in anticipation of the exchange. Sub Bank is a wholly owned subsidiary of Parent Bank.

In: Accounting

The Black Langshan chicken breed has feathered legs. When Black Langshan chickens are crossed with Bluff...

The Black Langshan chicken breed has feathered legs. When Black Langshan chickens are crossed with Bluff Rock chickens, which have unfeathered legs, all F1 has feathered legs. In the F2 only 24 out of 360 individuals have unfeathered legs while 336 chickens have feathered legs. (a) What type of gene interaction controls this phenotype? (b) Test your hypothesis using chi-square analysis.

In: Biology

Pls decode the following question and then solve it. O BR DNOCQOCM FL B DNTII KMOD...

Pls decode the following question and then solve it.

O BR DNOCQOCM FL B DNTII KMOD CGRJIT. WNIC WTODDIC OC JBUI IOMND, DNI CGRJIT UDOEE NBU DNTII KOMODU, JGD DNIY BTI IXBADEY DNI TIVITUI FL ODU JBUI DIC TIHTIUICDBDOFC. WNBD OU DNI CGRJIT?

Note: all the signle letter = I or A

In: Computer Science

1. If the 4-bit two's complement representations of integers J and K are 0100 and 1001,...

1. If the 4-bit two's complement representations of integers J and K are 0100 and 1001, respectively, then the decimal representation of integer (J - K) (K subtracted from J) is

  1. 11
  2. -2
  3. 2
  4. -3
  5. other (state the number)

2. The "correctness" core quality of software refers to the fact that ...

  1. programs efficiently support the insertion of new features, improvements, corrections
  2. programs answer to requested user actions within acceptable time delays.
  3. programs compile without any syntax errors.
  4. programs accurately meet the specifications of behaviour and required outputs

3. Running class TwoDSum, whose code is:

public class TwoDSum {
   public static void main(String[] args) {
      int[][] table = {-1,7,-3},{0,2,-4},{9,-6,5};
      int sum = 0;

      for (int i = 0; i < table.length; i++)
         if (i != table.length - i)
            sum += table[i][i] + table[table.length - i-1][i];

      System.out.println("Sum is " + sum);

   }
}

will display on the user console ...

  1. Sum is 14
  2. Sum is 20
  3. Sum is -2

4. The code of class Det below:

public class Det {
   public static void main(String[] args) {
      int[][] a = new int[2][];
      a[0] = new int[2];
      a[1] = new int[2];
      a[0][0] = 2;
      a[0][1] = 1;
      a[1][0] = 5;
      a[1][1] = 3;
      int det = a[0][0]*a[1][1] - a[0][1]*a[1][0];

      System.out.println("Determinant is " + det);
   }
}

will ...

  1. display "Determinant is 1" on the user console.
  2. issue a "missing ]" compilation error
  3. display "Determinant is 11" on the user console

5. Given the two code fragments A) an B), below, to compute the final value of a variable grandTotal, of type double and a 0 initial value:

A)

double delta = 0.1;

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

    grandTotal += delta;

B)

double delta = 0.001;

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

    grandTotal += delta;

Then variable grandTotal is...

  1. Both code fragments, A and B, compute grandTotal without any round-off error
  2. Computed with less round-off error in code fragment A
  3. Computed with less round-off error in code fragment B

6. An interface...

  1. Cannot be extended.
  2. can be used as a type in the instantiation/declaration line of an anonymous class.
  3. Cannot be implemented by an abstract class.

In: Computer Science

18) Which types of misbehavior in research are punishable by grant-giving agencies, and why? 19) What...

18) Which types of misbehavior in research are punishable by grant-giving agencies, and why?

19) What is “science the endless frontier”? Who suggested this, when, and why?

20) What happened in 1973 that was relevant for university-industry relations?

21) What is the Bayh-Dole act and what is its significance?

In: Psychology

I plan on retiring at 70 years of age, I want to retire with a net...

I plan on retiring at 70 years of age, I want to retire with a net income of $105,000 a year, total. I anticipate that social security will fund $20,000 of this total, but the social security will be taxable at 25%. The other portion is a ROTH IRA and not taxable at retirement.

How much will I need to have earned to fund this retirement at age 70 if I believe that I can retire for 30 years, to age 100, (no money left at 100, so it will be an annuity type investment, not perpetuity). I plan on earning 3.9% on my nest egg, or retirement savings for those 30 years. (lump sum). Round to the nearest dollar.

In: Finance

What happens if an established energy-drink company decides to enter the antienergy space? How does the...

What happens if an established energy-drink company decides to enter the antienergy space? How does the marketing game change for a company like Slow Cow

In: Economics