Questions
Question Dr. Gamble had been teaching PSYC 2021 for years, and always wore a suit to...

Question
Dr. Gamble had been teaching PSYC 2021 for years, and always wore a suit to class. His average teaching evaluation across all courses and years was 4.2/5. As Dr. Gamble was preparing for an upcoming PSYC 2021 course (N = 132), he wondered whether his course evaluations would be lower than the average across all of his previous classes if he wore jeans and a t-shirt to every class in the upcoming term. Use null hypothesis testing (all steps) to determine if wearing jeans and a t-shirt will lower Dr. Gamble’s teaching evaluations, relative to the mean of all previous sections of the course. Note that only 59 of the 132 students completed a teaching evaluation. Be sure to appropriately interpret the confidence interval and effect size (even if it is subjective) and include a general summary of the results. Use α = .10. Show excel formula used.

Data Set:

ID EVALS
1 3
2 4
3 4
4 5
5 5
6 5
7 3
8 5
9 5
10 4
11 4
12 3
13 4
14 5
15 3
16 5
17 5
18 5
19 5
20 3
21 4
22 2
23 4
24 3
25 3
26 4
27 4
28 4
29 5
30 3
31 5
32 3
33 5
34 3
35 4
36 5
37 5
38 5
39 3
40 5
41 4
42 2
43 5
44 5
45 4
46 5
47 4
48 5
49 2
50 5
51 3
52 5
53 3
54 2
55 3
56 4
57 5
58 4
59 3

In: Statistics and Probability

Tombro Industries is in the process of automating one of its plants and developing a flexible...

Tombro Industries is in the process of automating one of its plants and developing a flexible manufacturing system. The company is finding it necessary to make many changes in operating procedures. Progress has been slow, particularly in trying to develop new performance measures for the factory.

In an effort to evaluate performance and determine where improvements can be made, management has gathered the following data relating to activities over the last four months:

Month
1 2 3 4
Quality control measures:
Number of defects 196 174 135 96
Number of warranty claims 57 50 41 38
Number of customer complaints 113 107 90 69
Material control measures:
Purchase order lead time 8 days 7 days 5 days 4 days
Scrap as a percent of total cost 1 % 1 % 2 % 3 %
Machine performance measures:
Machine downtime as a percentage of availability 2 % 3 % 3 % 4 %
Use as a percentage of availability 96 % 93 % 90 % 86 %
Setup time (hours) 8 10 11 12
Delivery performance measures:
Throughput time ? ? ? ?
Manufacturing cycle efficiency (MCE) ? ? ? ?
Delivery cycle time ? ? ? ?
Percentage of on-time deliveries 97 % 96 % 93 % 90 %

The president has read in industry journals that throughput time, MCE, and delivery cycle time are important measures of performance, but no one is sure how they are computed. You have been asked to assist the company, and you have gathered the following data relating to these measures:

Average per Month
(in days)
1 2 3 4
Wait time per order before start
of production
8.0 10.4 11.0 13.0
Inspection time per unit 0.9 0.8 0.8 0.8
Process time per unit 2.4 2.3 2.2 1.9
Queue time per unit 4.3 4.9 5.4 6.6
Move time per unit 0.4 0.6 0.6 0.7

Required:

1-a. Compute the throughput time for each month.

1-b. Compute the manufacturing cycle efficiency (MCE) for each month.

1-c. Compute the delivery cycle time for each month.

3-a. Refer to the inspection time, process time, and so forth, given for month 4. Assume that in month 5 the inspection time, process time, and so forth, are the same as for month 4, except that the company is able to completely eliminate the queue time during production using Lean Production. Compute the new throughput time and MCE.

3-b. Refer to the inspection time, process time, and so forth, given for month 4. Assume that in month 6 the inspection time, process time, and so forth, are the same as in month 4, except that the company is able to eliminate both the queue time during production and the inspection time using Lean Production. Compute the new throughput time and MCE.

.

In: Accounting

Stats I, Item # Q-08 Saleemah, the assistant superintendent in charge of reviewing staffing patterns, is...

Stats I, Item # Q-08

Saleemah, the assistant superintendent in charge of reviewing staffing patterns, is investigating the number of substitute teachers assigned daily to the elementary schools in the district. She ponders whether the numbers vary by school and/or by day of the week. She tests her claims at the 10% significance level, and presumes that the underlying data collection is normally distributed. She gathers independent, simple random samples. The following data represent the numbers of substitute teachers assigned daily to each school during a randomly selected week, cross referenced by school and day of the week:

What are the claims is she testing? What conclusions should she draw? Explain in detail for both factors, both technically and contextually. In particular, if the findings for either one of the two or both factors are especially marginal or strong, please note those results. Cite relevant critical values and p-values that support the findings.

PS#1

PS#2

PS#3

PS#4

PS#5

PS#6

PS#7

PS#8

Mondays

4

8

7

6

2

9

12

8

Tuesdays

5

6

7

4

5

7

10

8

Wednesdays

6

4

7

4

4

5

8

8

Thursdays

7

6

7

4

3

3

6

8

Fridays

3

8

7

6

6

1

4

8

In: Statistics and Probability

Python #Remember that Fibonacci's sequence is a sequence of numbers #where every number is the sum...

Python

#Remember that Fibonacci's sequence is a sequence of numbers
#where every number is the sum of the previous two numbers.
#
#Joynernacci numbers are similar to Fibonacci numbers, but
#with two differences:
#
# - Fibonacci numbers are famous, Joynernacci numbers are
# not (yet).
# - In Joynernacci numbers, even-indexed numbers are the
# sum of the previous two numbers, while odd-indexed
# numbers are the absolute value of the difference
# between the previous two numbers.
#
#For example: the Joynernacci sequence starts with 1 and 1
#as the numbers at index 1 and 2. 3 is an odd index, so
#the third number would be 0 (1 - 1 = 0). 4 is an even
#index, so the fourth number would be 1 (0 + 1). 5 is an
#odd index, so the fifth number would be 1 (1 - 0). And
#so on.
#
#The first several Joynernacci numbers (and their indices)
#are thus:
#
# 1 1 0 1 1 2 1 3 2 5 3 8 5 13 8 21 13 34 21
# 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#
#Write a function called joynernacci that returns the nth
#Joynernacci number. For example:
#
# joynernacci(5) -> 1
# joynernacci(12) -> 8
#
#We recommend implementing joynernacci recursively, but it
#is not required.


#Write your code here!


#Below are some lines of code that will test your function.
#You can change the value of the variable(s) to test your
#function with different inputs.
#
#If your function works correctly, this will originally
#print: 1, then 8
print(joynernacci(5))
print(joynernacci(12))

In: Computer Science

The following regression output was obtained from a study of architectural firms. The dependent variable is...

The following regression output was obtained from a study of architectural firms. The dependent variable is the total amount of fees in millions of dollars.

Predictor Coefficient SE Coefficient t p-value
Constant 7.617 2.998 2.541 0.010
x1 0.224 0.069 3.246 0.000
x2 ? 1.144 0.559 ? 2.047 0.028
x3 ? 0.071 0.120 ? 0.592 0.114
x4 0.675 0.354 1.907 0.001
x5 ? 0.057 0.025 ? 2.280 0.112
Analysis of Variance
Source DF SS MS F p-value
Regression 5 2,113.40 422.7 7.37 0.000
Residual Error 48 2,751.10 57.31
Total 53 4,864.50

x1 is the number of architects employed by the company.

x2 is the number of engineers employed by the company.

x3 is the number of years involved with health care projects.

x4 is the number of states in which the firm operates.

x5 is the percent of the firm’s work that is health care?related.

Write out the regression equation. (Negative answers should be indicated by a minus sign. Round your answers to 3 decimal places.)

How large is the sample? How many independent variables are there?

c-1. At the 0.05 significance level, state the decision rule to test: H0: ?1 = ?2 = ?3=?4 = ?5 = 0; H1: At least one ? is 0. (Round your answer to 2 decimal places.)

c-2. Compute the value of the F statistic. (Round your answer to 2 decimal places.)

c-3. What is the decision regarding H0: ?1 = ?2 = ?3 = ?4 = ?5 = 0?

d-1. State the decision rule for each independent variable. Use the 0.05 significance level. (Round your answers to 3 decimal places.)

For x1 For x2 For x3 For x4 For x5
H0: ?1 = 0 H0: ?2 = 0 H0: ?3 = 0 H0: ?4 = 0 H0: ?5 = 0
H1: ?1 ? 0 H1: ?2 ? 0 H1: ?3 ? 0 H1: ?4 ? 0 H1: ?5 ? 0

d-2. Compute the value of the test statistic. (Negative answers should be indicated by a minus sign. Round your answers to 3 decimal places.)

d-3. For each variable, make a decision about the hypothesis that the coefficient is equal to zero.

The following regression output was obtained from a study of architectural firms. The dependent variable is the total amount of fees in millions of dollars.

Predictor Coefficient SE Coefficient t p-value
Constant 7.617 2.998 2.541 0.010
x1 0.224 0.069 3.246 0.000
x2 ? 1.144 0.559 ? 2.047 0.028
x3 ? 0.071 0.120 ? 0.592 0.114
x4 0.675 0.354 1.907 0.001
x5 ? 0.057 0.025 ? 2.280 0.112
Analysis of Variance
Source DF SS MS F p-value
Regression 5 2,113.40 422.7 7.37 0.000
Residual Error 48 2,751.10 57.31
Total 53 4,864.50

x1 is the number of architects employed by the company.

x2 is the number of engineers employed by the company.

x3 is the number of years involved with health care projects.

x4 is the number of states in which the firm operates.

x5 is the percent of the firm’s work that is health care?related.

Write out the regression equation. (Negative answers should be indicated by a minus sign. Round your answers to 3 decimal places.)

How large is the sample? How many independent variables are there?

c-1. At the 0.05 significance level, state the decision rule to test: H0: ?1 = ?2 = ?3=?4 = ?5 = 0; H1: At least one ? is 0. (Round your answer to 2 decimal places.)

c-2. Compute the value of the F statistic. (Round your answer to 2 decimal places.)

c-3. What is the decision regarding H0: ?1 = ?2 = ?3 = ?4 = ?5 = 0?

d-1. State the decision rule for each independent variable. Use the 0.05 significance level. (Round your answers to 3 decimal places.)

For x1 For x2 For x3 For x4 For x5
H0: ?1 = 0 H0: ?2 = 0 H0: ?3 = 0 H0: ?4 = 0 H0: ?5 = 0
H1: ?1 ? 0 H1: ?2 ? 0 H1: ?3 ? 0 H1: ?4 ? 0 H1: ?5 ? 0

d-2. Compute the value of the test statistic. (Negative answers should be indicated by a minus sign. Round your answers to 3 decimal places.)

d-3. For each variable, make a decision about the hypothesis that the coefficient is equal to zero.

The following regression output was obtained from a study of architectural firms. The dependent variable is the total amount of fees in millions of dollars.

Predictor Coefficient SE Coefficient t p-value
Constant 7.617 2.998 2.541 0.010
x1 0.224 0.069 3.246 0.000
x2 ? 1.144 0.559 ? 2.047 0.028
x3 ? 0.071 0.120 ? 0.592 0.114
x4 0.675 0.354 1.907 0.001
x5 ? 0.057 0.025 ? 2.280 0.112
Analysis of Variance
Source DF SS MS F p-value
Regression 5 2,113.40 422.7 7.37 0.000
Residual Error 48 2,751.10 57.31
Total 53 4,864.50

x1 is the number of architects employed by the company.

x2 is the number of engineers employed by the company.

x3 is the number of years involved with health care projects.

x4 is the number of states in which the firm operates.

x5 is the percent of the firm’s work that is health care?related.

Write out the regression equation. (Negative answers should be indicated by a minus sign. Round your answers to 3 decimal places.)

? = + x1 + x2 + x3 + x4 + x5

How large is the sample? How many independent variables are there?

Sample n
Independent variables k

c-2. Compute the value of the F statistic. (Round your answer to 2 decimal places.)

d-1. State the decision rule for each independent variable. Use the 0.05 significance level. (Round your answers to 3 decimal places.)

For x1 For x2 For x3 For x4 For x5
H0: ?1 = 0 H0: ?2 = 0 H0: ?3 = 0 H0: ?4 = 0 H0: ?5 = 0
H1: ?1 ? 0 H1: ?2 ? 0 H1: ?3 ? 0 H1: ?4 ? 0 H1: ?5 ? 0
Reject H0 if t < not attempted or t > not attempted .

d-2. Compute the value of the test statistic. (Negative answers should be indicated by a minus sign. Round your answers to 3 decimal places.)

x1not attempted

x2not attempted

x3not attempted

x4not attempted

x5not attempted

d-3. For each variable, make a decision about the hypothesis that the coefficient is equal to zero.

x1not attempted

x2not attempted

x3not attempted

x4not attempted

x5not attempted

In: Statistics and Probability

Wen-Ching is working to develop a preliminary cost-benefit analysis for a website to support the leasing...

Wen-Ching is working to develop a preliminary cost-benefit analysis for a website to support the leasing department at a major university. She developed the following estimates.
Development costs – Personnel
2 Systems Analysts       350 hours each at $80/hour
2 Agile Programmer/testers   350 hours each at $70/hour
1 Web designer           100 hours at $125/hour
1 Telecom specialist       20 hours at $150/hour
1 Database specialist       110 hours at $100/hour
Development costs – Training
2 interactive training seats    $3000/student
Development costs – Hardware and Software
1 Development Server       $2500
8 DBMS client licenses       $250/client
Annual operating costs – Personnel
1 Programmer/analyst       300 hours each at $65/hour
Annual operating costs – Hardware, software, misc.
1 maintenance agreement, server       $995
1 maintenance agreement, DBMS       $525
The benefits of the new system are expected to come from two sources: increased occupancy and ability to charge additional rent due to convenience. The benefit from occupancy is expected to total $30,000 in the first year of the system’s operation, and will grow at a rate of 10% per year. Rental increase is expected to realize $15,000 per year. Assume that personnel costs rise at 4%/year.
Following the model presented in the lecture, develop a spreadsheet that summarizes the project’s cash flow, assuming a four-year payback period after the project is developed.
Following the model presented in the lecture, compute the present value of the cash flows using an interest rate of 4%.
1.   What is the ROI?
2.   What is the break-even point?
3.   What is the NPV for this project?
4.   Should this project be approved?

In: Finance

A clinical trial is planned to compare an experimental medication designed to lower blood pressure to...

  1. A clinical trial is planned to compare an experimental medication designed to lower blood pressure to a placebo. Before starting the trial, a pilot study is conducted involving 7 participants. The objective of the study is to assess how systolic blood pressure changes over time untreated. Systolic blood pressures are measured at baseline and again 4 weeks later. Is there a statistically significant difference in blood pressures over time? Run the test at a 5% level of significance.

Baseline           120      145      130      160      152      143      126     

4 Weeks           122      142      135      158      155      140      130     

            Difference        -2         3          -5         2          -3         3          -4         S Differences = -6

            Difference2      4          9          25        4          9          9          16        S Differences2 = 76

Xd=-0.86 sd=3.44

Step 1.           Set up hypotheses and determine level of significance

Step 2.            Select the appropriate test statistic

                                

Step 3.            Set up decision rule

                       

Step 4.            Compute the test statistic

           

Step 5.            Conclusion

In: Statistics and Probability

LABEL EACH OF THE 4 HYPOTHESIS STEPS IN YOUR WORK PLEASE! FOR A 5 STAR RATING...

LABEL EACH OF THE 4 HYPOTHESIS STEPS IN YOUR WORK PLEASE! FOR A 5 STAR RATING

  1. New research suggests that watching television especially medical shows such as Grey’s Anatomy and House, can result in increased concern about personal health (Ye, 2010). Surveys administrated to college students measure television viewing habits and health concerns such as fear of developing the diseases and disorders seen on television. For the following data, students are classified into three categories based on their television viewing patterns and health concerns are measured on a 10-point scale with 0 indicating “none”.

a) Use an ANOVA with = .05 to determine whether there are significant mean differences among the three groups.

c) Use Tukey’s HSD test with = .05 to determine which group are significantly different.

Little or None

Moderate

Substantial

4

5

5

2

7

7

5

3

6

1

4

6

3

8

8

7

6

9

4

2

6

4

7

4

8

3

6

2

5

8

In: Statistics and Probability

1. write a paragraph about how you will avoid procrastination. consider these ideas when thinking about...

1. write a paragraph about how you will avoid procrastination. consider these ideas when thinking about procrastination: fear of failure, fear of success, perfectionism, need for excitement, excellence without effort, and loss of control. how will you complete your assignments on time?2 to 4 paragraphs

2. what is your plan for managing your money? Consider these ideas when thinking about your plan: monitoring how you spend your money, using a budget, applying for financial aid and scholarships, saving money, and spending money wisely. 2-4 paragraphs

In: Finance

Part A: Express the quadratic function in standard form (vertex form). ?(?) = 1 − 12?...

Part A: Express the quadratic function in standard form (vertex form). ?(?) = 1 − 12? − 4? 2

Part B: Find the quotient and remainder using synthetic division. ?^4 + 2?^3 − 10? all over ? − 3

Part C: A stone is thrown upward from the top of a building. Its height (in feet) above the ground after t seconds is given by the function ℎ(?) = −16?^2 + 96? + 48. a. What maximum height does the stone reach? Find the maximum height algebraically.

b. How long does it take the stone to hit the ground? Give an exact value.

In: Math