Questions
. A manager for an insurance company believes that customers have the following preferences for life...

. A manager for an insurance company believes that customers have the following preferences for life insurance products: 40% prefer Whole Life, 10% prefer Universal Life, and 50% prefer Life Annuities. The results of a survey of 310 customers were tabulated. Is it possible to refute the sales manager's claimed proportions of customers who prefer each product using the data?

Product Number Whole 124 Universal 31 Annuities 155

State the null and alternative hypothesis.

What does the null hypothesis indicate about the proportions of fatal accidents during each month?

State the null and alternative hypothesis in terms of the expected proportions for each category.

Find the value of the test statistic. Round your answer to three decimal places.

Find the degrees of freedom associated with the test statistic for this problem.

Find the critical value of the test at the 0.025 level of significance. Round your answer to three decimal places.

Make the decision to reject or fail to reject the null hypothesis at the 0.025 level of significance.

State the conclusion of the hypothesis test at the 0.025 level of significance.  

In: Math

Consider the Solow model in which we use the following production function: Yt = A(bar)Kt 1⁄3...

Consider the Solow model in which we use the following production function:

Yt = A(bar)Kt 1⁄3 Lt 2⁄3

a. Write down all the model equations and draw the complete Solow diagram. Explain the intuition behind each equation and behind the shape of each curve on the diagram.

c. Solve for the steady state capital and output reporting all the steps. Explain the intuition for the expressions obtained.

Thanks guys!

In: Economics

Subject: macroeconomics Question;Monopolies 1. State and explain the macroeconomic problem . Provide detailed macroeconomic research consisting...

Subject: macroeconomics
Question;Monopolies
1. State and explain the macroeconomic problem . Provide detailed macroeconomic research consisting , Example ; increase the federal minimum wage? What macroeconomic problems does increase the federal minimum wage introduce?
2. What are positive and negative externalities,if any

3. What is the aggregate supply and aggregate demand concerns regarding the topic? Who will be impacted regarding the macroeconomic event? Example; the poor, the wealthy.

4. What are your recommendations ( effective/creative) Provide at least three

5. What are the alternatives (effective/creative) provide at least two- three

6. What are your solutions ( effective/ creative)

In: Economics

I want to make picture compress program in matlab use eigenmatrix in RGB with PCA. This...

I want to make picture compress program in matlab use eigenmatrix in RGB with PCA. This code listed below. But this code is fail. I want to make the picture have a colour, but in my program the picture is still colorless. Can you fix my code?

clc
clear all

picture = im2double(imread('picture1.jpg'));

Red = picture(:,:,1);

premean = mean(Red(:));
premax = max(Red(:));
premin = min(Red(:));
x = size(Red,1);
y = size(Red,2);
Z = ones(x,y)*premean;
A = (Red - Z)*(1/premax - premin);

B = cov(A);
[veceig,eig,C] = pcacov(B);

NewRed = A*veceig(:,1:50);
ReturnRed = NewRed*veceig(:,1:50);
Return2Red = ((premax - premin)*ReturnRed)+ Z;

Green = picture(:,:,2);

premean_2 = mean(Green(:));
premax_2 = max(Green(:));
premin_2 = min(Green(:));
x2 = size(Green,1);
y2 = size(Green,2);
Z2 = ones(x2,y2)*premean_2;
A2 = (Green - Z2)*(1/premax_2 - premin_2);

D = cov(A2);
[veceig2,eig,E] = pcacov(D);

NewGreen = A2*veceig2(:,1:50);
ReturnGreen = NewGreen*veceig2(:,1:50);
Return2Green = ((premax_2 - Premin_2)*ReturnGreen)+ Z2;

Blue = picture(:,:,3);

premean_3 = mean(Blue(:));
premax_3 = max(Blue(:));
premin_3 = min(Blue(:));
x3 = size(Blue,1);
y3 = size(Blue,2);
Z3 = ones(x3,y3)*premean_3;
A3 = (Blue - Z3)*(1/premax_3 - premin_3);

F = cov(A3);
[veceig3,eig,G] = pcacov(F);

NewBlue = A3*veceig3(:,1:50);
ReturnBlue = NewBlue*veceig3(:,1:50);
Return2Blue = ((premax_3 - Premin_3)*Return2Blue)+ Z3;

figure,plot(cumsum(C)),cumsum(E),cumsum(G);

figure,imshow(A:A2:A2);
title('Original Image Normalization');

figure,imshow(ReturnRed:ReturnBlue:ReturnGreen);
title('Original Result of Decompression Normalization');

imshow(Red:Green:Blue);

In: Computer Science

I want to create an image compression program with matlab use PCA. I have the code...

I want to create an image compression program with matlab use PCA. I have the code listed below. But this code is fail, the image is colorless, but still gray. Can you help me to fix my code.

clc
clear all

picture = im2double(imread('picture1.jpg'));

Red = picture(:,:,1);

premean = mean(Red(:));
premax = max(Red(:));
premin = min(Red(:));
x = size(Red,1);
y = size(Red,2);
Z = ones(x,y)*premean;
A = (Red - Z)*(1/premax - premin);

B = cov(A);
[veceig,eig,C] = pcacov(B);

NewRed = A*veceig(:,1:50);
ReturnRed = NewRed*veceig(:,1:50);
Return2Red = ((premax - premin)*ReturnRed)+ Z;

Green = picture(:,:,2);

premean_2 = mean(Green(:));
premax_2 = max(Green(:));
premin_2 = min(Green(:));
x2 = size(Green,1);
y2 = size(Green,2);
Z2 = ones(x2,y2)*premean_2;
A2 = (Green - Z2)*(1/premax_2 - premin_2);

D = cov(A2);
[veceig2,eig,E] = pcacov(D);

NewGreen = A2*veceig2(:,1:50);
ReturnGreen = NewGreen*veceig2(:,1:50);
Return2Green = ((premax_2 - Premin_2)*ReturnGreen)+ Z2;

Blue = picture(:,:,3);

premean_3 = mean(Blue(:));
premax_3 = max(Blue(:));
premin_3 = min(Blue(:));
x3 = size(Blue,1);
y3 = size(Blue,2);
Z3 = ones(x3,y3)*premean_3;
A3 = (Blue - Z3)*(1/premax_3 - premin_3);

F = cov(A3);
[veceig3,eig,G] = pcacov(F);

NewBlue = A3*veceig3(:,1:50);
ReturnBlue = NewBlue*veceig3(:,1:50);
Return2Blue = ((premax_3 - Premin_3)*Return2Blue)+ Z3;

figure,plot(cumsum(C)),cumsum(E),cumsum(G);

figure,imshow(A:A2:A2);
title('Original Image Normalization');

figure,imshow(ReturnRed:ReturnBlue:ReturnGreen);
title('Original Result of Decompression Normalization');

figure,imshow(Red:Green:Blue);

imshow(Red:Green:Blue);

In: Computer Science

Show work in Red and Explain answers. Suppose CPI is as follows in each year: Year:...

Show work in Red and Explain answers.

Suppose CPI is as follows in each year:

Year:

2007

2008

2009

2010

CPI:

100

99

125

140

Suppose in the year 2007 you are considering a job offer that pays $50,000 in 2007, plus a 10% (compounding) raise in each of the next three years.

Suppose in the year 2007 you are considering a job offer that pays $50,000 in 2007, plus a 10% (compounding) raise in each of the next three years.

  1. What nominalsalary will you make in each year?

Year:

2007

2008

2009

2010

Nominal Salary

  1. What will your real salary be in each year, using a 2007 base year?

Year:

2007

2008

2009

2010

Salary in 2007$

  1. What will your real salary be in each year, using a 2009 base year?

Year:

2007

2008

2009

2010

Salary in 2010$

  1. In what year was your real salary highest?                                 _________
  2. Does your answer to 4 depend on the base year selected?        _________
  3. Suppose instead your contract gave you $50,000 in 2007, plus a cost of living adjustment equal to the percentage change in CPI. Compute the nominal wage in each year.

Year:

2007

2008

2009

2010

Nominal Salary

  1. In what years is this contract better than the original one?       _________

In: Economics

Please answer without plagirism List at least 3 environmental and lifestyle factors that you personally think...

Please answer without plagirism

List at least 3 environmental and lifestyle factors that you personally think have contributed the most to America's overweight and obesity trend. Make sure to explain why you think your choices are the top three.

  • Some environmental/lifestyle factors to consider include:
    • Food environment, portion sizes, home-cooked meals vs take out, restaurants
    • Emotions, stress, sleep habits, prescription drug use, smoking cessation
    • Sedentary lifestyle, television, the community environment, etc.
    • Why is the government so concerned with the growing obesity trend in the United States? What are they doing about it?
    • What do you think would be the best strategy to stop the obesity trend in the US? List two changes you would make if you were in charge of your community.  
    • Consider your own weight and caloric intake. View your NutriCalc Plus reports. Do you typically meet your DRI energy recommendations? Is your energy (calorie) intake too low, or too high? Are you able to maintain a healthy weight with your current intake?  
    • What strategies do you use to maintain a healthy weight? If you are not at a healthy weight (underweight or overweight), what factors are most challenging to you as you seek to achieve and maintain a healthy weight?  

In: Nursing

Then, answer the following questions about the System on a Chip (SOC) and Package on Package...

Then, answer the following questions about the System on a Chip (SOC) and Package on Package (POP) that the RPi implements:
1. The Broadcom SoC is installed in a large range of devices. Explain what the advantages are of having a System on a Chip rather than a separate CPU, GPU, and RAM components.
2. What are the disadvantages to a SOC style chip?
3. Explain using step-by-step instructions how the CPU executes a simple program such as adding two whole (integer) numbers together. You should refer to the Control Unit, RAM, cache, registers, and the Arithmetic Logic Unit in your explanation. You should also be able to name the roles of some of the registers.
4. What is the basic difference between a SOC and a POP? Which method was used to include the RAM on the R-Pi?
5. Where does one typically find SOC and POP type chips?
6. What are some of the instructions that make up the Instruction Set Architecture of the Broadcom ARM chip in your Raspberry Pi? An example we’ve used in class is ADD, list at least 5 others. Does it use a RISC or a CISC instruction set?
7. What are some of the named registers in your Broadcom ARM Chip on your Raspberry Pi?
8. How much level 1, level 2, and level 3 cache does your CPU in the Raspberry Pi have access to?

In: Electrical Engineering

Which of the following statements about genetics is TRUE?


Which of the following statements about genetics is TRUE? 

 a. A mutation is any change in DNA that is harmful to an organism.

 b. Genetic disorders are always caused by the inheritance of recessive alleles.

 c. The red queen hypothesis proposes that asexual reproduction evolved in organisms to increase genetic variation, and therefore, improve resilience in ever-changing environments.

 d. Natural selection acts directly on the phenotype and indirectly on the genotype.

In: Biology

Suppose that the price of sugar, a major input for making Coca – Cola (Coke), decreased....

Suppose that the price of sugar, a major input for making Coca – Cola (Coke), decreased. Using two separate competitive supply/demand diagrams for Coke market, and Pepsi market, illustrate and briefly explain the probable effects of the decrease in the price of sugar: on equilibrium price, and equilibrium quantities, in the Coke and Pepsi market (assume Pepsi uses sweetener instead of sugar). What happens to the revenues of Coke, and Pepsi producers/sellers? [Hint: Coke and Pepsi are substitutes]. You may just explain in detail what happens to the demand/supply curves for Coca – Cola market and Pepsi market as well as corresponding equilibrium price and quantity

In: Economics