Questions
4. Compare the approaches of Fisher’s transactions and Pigou’s cash balances to the quantity theory. Are...

4. Compare the approaches of Fisher’s transactions and Pigou’s cash balances to the quantity theory. Are there any similarities between them? If so, in which respects? Or should they be treated as different approaches altogether?

In: Economics

Two suppliers have been contracted by a government agency to train agency employees learning to use...

Two suppliers have been contracted by a government agency to train agency employees learning to use a new computer system. The marginal cost curve of firm 1 is MC1=160+2Q1, while the marginal cost curve for Firm 2 is MC2=100+Q2, where Q is hours of training per week. Originally, each firm provides 60 hours of training services each week.

What is the total cost to firm 1 of providing 60 hours of training each week?

What is the total cost to firm 2 of providing 60 hours of training each week?

An economically-literate manager suggests it would be better to state a price that the government is willing to pay for an hour of training, and let each firm provide the number of hours they are willing to at this price.

What price should the government set to cost-effectively distribute the number of hours between the two firms while maintaining the total training provided at 120 hours per week?

How many hours of training will firm 1 provide at this price?

What is firm 1’s total cost?

How many hours will firm 2 provide at this price?

What is firm 2’s total cost?

How large is the cost savings resulting from the price rationed system relative to the original allocation of 60 training hours for each firm?

In: Economics

Instructions: Digital submission in PDF format (you can use Word or Markdown to create these and...

Instructions: Digital submission in PDF format (you can use Word or Markdown to create these and then convert to PDF). Your submission must include all R code.
I will be testing all of your code by copying and pasting into my R session, so make sure it works. Your solutions should be a narrative that incorporates R code (i.e. tell a story). R code by itself is not sufficient. This must be entirely an original work done by you. Copying someone else’s work (possibly found online) is not acceptable.

Assignment:

1) In homework 2, you gave the name of a site you would like to scrape. Follow through with this (you may change the site if you wish). The point of this exercise will be to ultimately provide an interesting visualization of the data which needs to be included in your solution. For this problem, the data must be scraped. Provide why you chose this site, and how someone would find your visualization useful (in other words, justify why anyone would care about this).

In: Computer Science

Given the information below, create the fully labeled Crow's Foot ERD using a specialization hierarchy where...

Given the information below, create the fully labeled Crow's Foot ERD using a specialization hierarchy where appropriate (use Visio). The ERD must contain all primary keys, foreign keys, and main attributes. Business rules are defined as follows: A small company sells products on-line. Each product is supplied by one supplier. Each supplier delivers only one product. Each product belongs to one of the following categories: Books, Movies, or CDs. All products have common attributes - a product code, a title and a price- and attributes that are unique for each group of products. The list of such attributes includes but is not limited to the following: the publisher name (books), the format (movies), and the rating (CDs). In addition, customers may purchase a book (hardcover or paperback) or its' electronic version. For regular books, the company wants to record the number of pages per book. For electronic books, the format and the size of the file must be recorded.

In: Computer Science

1, If we want to display output from a command, such as DIR or TYPE, one...

1, If we want to display output from a command, such as DIR or TYPE, one screen at a time, we can use what kind of command?

> MORE

| PAGE

| MORE

>> PAGE

2, To delete a directory that contains subdirectories and/or files, we will use what command:

DEL directory name /S

MD directory name /S

RD directory name /S

RMDIR directory name

3, When we are using certain tools (e.g. WMIC, DISKPART, and NETSH) in the Interactive Mode, most of the internal Command Prompt commands, such as CLS and CD, would not work. However, which command will work?

BYE

EXIT

| MORE

START

4, When we use this command in a batch file, the user must pick from the available options because Command Prompt won't let s/he pick anything else:

CHOICE

IF ELSE

FOR

SET

In: Computer Science

Thalassines Kataskeves, S.A., of Greece makes marine equipment. The company has been experiencing losses on its...

Thalassines Kataskeves, S.A., of Greece makes marine equipment. The company has been experiencing losses on its bilge pump product line for several years. The most recent quarterly contribution format income statement for the bilge pump product line follows:

Thalassines Kataskeves, S.A.
Income Statement—Bilge Pump
For the Quarter Ended March 31
Sales $ 420,000
Variable expenses:
Variable manufacturing expenses $ 131,000
Sales commissions 53,000
Shipping 24,000
Total variable expenses 208,000
Contribution margin 212,000
Fixed expenses:
Advertising 27,000
Depreciation of equipment (no resale value) 104,000
General factory overhead 46,000 *
Salary of product-line manager 129,000
Insurance on inventories 13,000
Purchasing department 53,000
Total fixed expenses 372,000
Net operating loss $ (160,000 )

*Common costs allocated on the basis of machine-hours.

†Common costs allocated on the basis of sales dollars.

Discontinuing the bilge pump product line would not affect sales of other product lines and would have no effect on the company’s total general factory overhead or total Purchasing Department expenses.

Required:

a. Compute the increase or decrease of net operating income if the product line is continued or discontinued. (Decreases should be indicated by a minus sign.)

b. Would you recommend that the bilge pump product line be discontinued?

Yes
No

In: Accounting

Give examples from the literature of metal complexes with coordination numbers (CN) of 2, 3, 4,...

Give examples from the literature of metal complexes with coordination numbers (CN) of 2, 3, 4, 5, 6, 7 and 8 (formula, structure). What is the highest Coordination Number found for a metal ion?

In: Chemistry

a) Suppose each of the following confidence intervals were calculated using the same sample. Circle the...

a) Suppose each of the following confidence intervals were calculated using the same sample. Circle the interval that is at the lower confidence level. State the sample proportion that was used to construct these intervals. (.25, .35), (.24, .36)

b) Suppose you want a confidence interval to be more narrow. What two things can you do to achieve this?

c) For a given sample, which would you prefer, a wider interval or a more narrow one? Why?

d) Suppose your sample proportion is 0.17, with n = 100. How many “successes” were in your sample?

e) Suppose you have a sample with n = 27. Nine of your sample values are found to have the characteristic of interest. Are the 4 conditions required to do a confidence interval met?

f) True or False: a 95% confidence interval for p always contains p.

In: Math

Hi Can someone explain how the the output was achieved in details for this java question?...

Hi Can someone explain how the the output was achieved in details for this java question?

public class Example
  
{
public static void main(String [] args)
{
int a = 6, b = 5, i , num1, num2;
for (i = 1; i <= 3; ++i)
{
num1 = method1(a, b);
num2 = method2 (a, b);
System.out.println (num1 + " " + num2);
a = a + 2;
b = b - 1;
}
}
public static int method1 (int c, int d)
{
c = c + d;
return c;
}
public static int method2 (int e, int f)
{
f = f + e * 2 ;
return f ;
}
}

output

run:
11 17
12 20
13 23

In: Computer Science

Linda invest 25000 for one year part is invested at 5% another part at 6% and...

Linda invest 25000 for one year part is invested at 5% another part at 6% and the rest at 8%. the total income from all three investments is $1600. the income from the 5% and 6% investments is the same as the income from the 8% investment. find the amount invested at each rate.

In: Economics

Given the following data: 3FeO(s) + CO2(g) → Fe3O4(s) + CO(g) ΔH° = -18.0 kJ FeO(s)...

Given the following data:

3FeO(s) + CO2(g) → Fe3O4(s) + CO(g) ΔH° = -18.0 kJ

FeO(s) + CO(g) → Fe(s) + CO2(g) ΔH° = -11.0 kJ

Fe2O3(s) + 3CO(g) → 2Fe(s) + 3CO2(g) ΔH° = -23.0 kJ

Calculate ΔH° for the reaction: 3Fe2O3(s) + CO(g) → 2Fe3O4(s) + CO2(g)

In: Chemistry

Python 1. Change the order of an input string based on Unicode equivalent. Write a function...

Python

1. Change the order of an input string based on Unicode equivalent.

Write a function Reorder that will take an input string of a maximum length of 20 characters and create a new string that reorders the string based on it’s binary Unicode character equivalent, e.g. ‘a’ = 0x61, ‘A’ = 0x41, from smallest value to largest value. In this example, ‘A’ would come before ‘a’, as 0x41 is a smaller number than ox61. Note, use python logical operators to do the comparison. Do not try to create a Unicode lookup table. For your code, use the string “sum=(x*259)/average” as your input string to your function.

In: Computer Science

Show the values contained in the instance variables elements and numElements of the sample collection after...

Show the values contained in the instance variables elements and numElements of the sample collection after the following sequence of operations:

ArrayCollection<String> sample = new ArrayCollection<String>; sample.add("A"); sample.add("B"); sample.add("C"); sample.add("D"); sample.remove("B");

//---------------------------------------------------------------------------
// ArrayCollection.java by Dale/Joyce/Weems Chapter 5
//
// Implements the CollectionInterface using an array.
//
// Null elements are not allowed. Duplicate elements are allowed.
//
// Two constructors are provided: one that creates a collection of a default
// capacity, and one that allows the calling program to specify the capacity.
//---------------------------------------------------------------------------
package ch05.collections;

public class ArrayCollection<T> implements CollectionInterface<T>
{
protected final int DEFCAP = 100; // default capacity
protected T[] elements; // array to hold collection’s elements
protected int numElements = 0; // number of elements in this collection

// set by find method
protected boolean found; // true if target found, otherwise false
protected int location; // indicates location of target if found

public ArrayCollection()
{
elements = (T[]) new Object[DEFCAP];
}

public ArrayCollection(int capacity)
{
elements = (T[]) new Object[capacity];
}

protected void find(T target)
// Searches elements for an occurrence of an element e such that
// e.equals(target). If successful, sets instance variables
// found to true and location to the array index of e. If
// not successful, sets found to false.
{
location = 0;
found = false;

while (location < numElements)
{
if (elements[location].equals(target))
{
found = true;
return;
}
else
location++;
}
}

public boolean add(T element)
// Attempts to add element to this collection.
// Returns true if successful, false otherwise.
{
if (isFull())
return false;
else
{
elements[numElements] = element;
numElements++;
return true;
}
}

public boolean remove (T target)
// Removes an element e from this collection such that e.equals(target)
// and returns true; if no such element exists, returns false.
{
find(target);
if (found)
{
elements[location] = elements[numElements - 1];
elements[numElements - 1] = null;
numElements--;
}
return found;
}
  
public boolean contains (T target)
// Returns true if this collection contains an element e such that
// e.equals(target); otherwise, returns false.
{
find(target);
return found;
}

public T get(T target)
// Returns an element e from this collection such that e.equals(target);
// if no such element exists, returns null.
{
find(target);
if (found)
return elements[location];
else
return null;
}
  
public boolean isFull()
// Returns true if this collection is full; otherwise, returns false.
{
return (numElements == elements.length);
}

public boolean isEmpty()
// Returns true if this collection is empty; otherwise, returns false.
{
return (numElements == 0);
}

public int size()
// Returns the number of elements in this collection.
{
return numElements;
}
}

In: Computer Science

Regional trading blocs, such as the European Union (EU) and NAFTA, are growing in importance. Why...

Regional trading blocs, such as the European Union (EU) and NAFTA, are growing in importance. Why do you think this is so - what do countries gain from joining a regional trading bloc? What the implications of these trading blocs for international business? Are they helpful or harmful? How might they affect a firm's investment decision?

In: Economics

Bilboa Freightlines, S.A., of Panama, has a small truck that it uses for intracity deliveries. The...

Bilboa Freightlines, S.A., of Panama, has a small truck that it uses for intracity deliveries. The truck is worn out and must be either overhauled or replaced with a new truck. The company has assembled the following information:

Present
Truck
New
Truck
Purchase cost new $ 35,000 $ 50,000
Remaining book value $ 25,000 -
Overhaul needed now $ 24,000 -
Annual cash operating costs $ 18,500 $ 18,000
Salvage value-now $ 15,000 -
Salvage value-five years from now $ 11,000 $ 9,000

If the company keeps and overhauls its present delivery truck, then the truck will be usable for five more years. If a new truck is purchased, it will be used for five years, after which it will be traded in on another truck. The new truck would be diesel-operated, resulting in a substantial reduction in annual operating costs, as shown above.

The company computes depreciation on a straight-line basis. All investment projects are evaluated using a 13% discount rate.

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

Required:

1. What is the net present value of the “keep the old truck” alternative?

2. What is the net present value of the “purchase the new truck” alternative?

3. Should Bilboa Freightlines keep the old truck or purchase the new one?

In: Accounting