Questions
Use the given data set to complete parts? (a) through? (c) below.? (Use alphaequals?0.05.) x 10...

Use the given data set to complete parts? (a) through? (c) below.? (Use alphaequals?0.05.) x 10 8 13 9 11 14 6 4 12 7 5 y 9.14 8.14 8.75 8.77 9.26 8.11 6.13 3.09 9.12 7.26 4.74 LOADING... Click here to view a table of critical values for the correlation coefficient. a. Construct a scatterplot. Choose the correct graph below. A. 0 4 8 12 16 0 2 4 6 8 10 x y A scatterplot has a horizontal x-scale from 0 to 16 in increments of 2 and a vertical y-scale from 0 to 10 in increments of 1. Eleven points are plotted with approximate coordinates as follows: (4, 1); (5, 1.4); (6, 1.6); (7, 2); (8, 2.4); (9, 3); (10, 3.6); (11, 4.2); (12, 4.8); (13, 6); (14, 8). B. 0 4 8 12 16 0 2 4 6 8 10 x y A scatterplot has a horizontal x-scale from 0 to 16 in increments of 2 and a vertical y-scale from 0 to 10 in increments of 1. Eleven points are plotted with approximate coordinates as follows: (4, 2); (5, 2.6); (6, 3); (7, 3.6); (8, 4); (9, 4.6); (10, 5); (11, 5.6); (12, 6); (13, 6.6); (14, 7). C. 0 4 8 12 16 0 2 4 6 8 10 x y A scatterplot has a horizontal x-scale from 0 to 16 in increments of 2 and a vertical y-scale from 0 to 10 in increments of 1. Eleven points are plotted with approximate coordinates as follows: (4, 3); (5, 4.8); (6, 6.2); (7, 7.2); (8, 8.2); (9, 8.8); (10, 9.2); (11, 9.2); (12, 9.2); (13, 8.8); (14, 8.2). D. 0 4 8 12 16 0 2 4 6 8 10 x y A scatterplot has a horizontal x-scale from 0 to 16 in increments of 2 and a vertical y-scale from 0 to 10 in increments of 1. Eleven points are plotted with approximate coordinates as follows: (4, 6); (5, 5.6); (6, 5); (7, 4.6); (8, 4); (9, 3.6); (10, 3); (11, 2.6); (12, 2); (13, 1.6); (14, 1). b. Find the linear correlation? coefficient, r, then determine whether there is sufficient evidence to support the claim of a linear correlation between the two variables. The linear correlation coefficient is requals nothing. ?(Round to three decimal places as? needed.) Using the linear correlation coefficient found in the previous? step, determine whether there is sufficient evidence to support the claim of a linear correlation between the two variables. Choose the correct answer below. A. There is insufficient evidence to support the claim of a nonlinear correlation between the two variables. B. There is sufficient evidence to support the claim of a nonlinear correlation between the two variables. C. There is insufficient evidence to support the claim of a linear correlation between the two variables. D. There is sufficient evidence to support the claim of a linear correlation between the two variables. c. Identify the feature of the data that would be missed if part? (b) was completed without constructing the scatterplot. Choose the correct answer below. A. The scatterplot reveals a distinct pattern that is a? straight-line pattern with negative slope. B. The scatterplot reveals a distinct pattern that is a? straight-line pattern with positive slope. C. The scatterplot does not reveal a distinct pattern. D. The scatterplot reveals a distinct pattern that is not a? straight-line pattern. Click to select your answer(s).

In: Statistics and Probability

PYTHON PLEASE!! ALSO: if you can include an explanation of what the code means that would...

PYTHON PLEASE!!

ALSO: if you can include an explanation of what the code means that would be appreciated

8.19 LAB*: Program: Soccer team roster (Dictionaries)

This program will store roster and rating information for a soccer team. Coaches rate players during tryouts to ensure a balanced team.

(1) Prompt the user to input five pairs of numbers: A player's jersey number (0 - 99) and the player's rating (1 - 9). Store the jersey numbers and the ratings in a dictionary. Output the dictionary's elements with the jersey numbers in ascending order (i.e., output the roster from smallest to largest jersey number). Hint: Dictionary keys can be stored in a sorted list. (3 pts)

Ex:

Enter player 1's jersey number:
84
Enter player 1's rating:
7

Enter player 2's jersey number:
23
Enter player 2's rating:
4

Enter player 3's jersey number:
4
Enter player 3's rating:
5

Enter player 4's jersey number:
30
Enter player 4's rating:
2

Enter player 5's jersey number:
66
Enter player 5's rating:
9

ROSTER
Jersey number: 4, Rating: 5
Jersey number: 23, Rating: 4
Jersey number 30, Rating: 2
...

(2) Implement a menu of options for a user to modify the roster. Each option is represented by a single character. The program initially outputs the menu, and outputs the menu after a user chooses an option. The program ends when the user chooses the option to Quit. For this step, the other options do nothing. (2 pts)

Ex:

MENU
a - Add player
d - Remove player
u - Update player rating
r - Output players above a rating
o - Output roster
q - Quit

Choose an option:

(3) Implement the "Output roster" menu option. (1 pt)

Ex:

ROSTER
Jersey number: 4, Rating: 5
Jersey number: 23, Rating: 4
Jersey number 30, Rating: 2
...

(4) Implement the "Add player" menu option. Prompt the user for a new player's jersey number and rating. Append the values to the two vectors. (1 pt)

Ex:

Enter a new player's jersey number:
49
Enter the player's rating:
8

(5) Implement the "Delete player" menu option. Prompt the user for a player's jersey number. Remove the player from the roster (delete the jersey number and rating). (1 pt)

Ex:

Enter a jersey number:
4

(6) Implement the "Update player rating" menu option. Prompt the user for a player's jersey number. Prompt again for a new rating for the player, and then change that player's rating. (1 pt)

Ex:

Enter a jersey number:
23
Enter a new rating for player:
6

(7) Implement the "Output players above a rating" menu option. Prompt the user for a rating. Print the jersey number and rating for all players with ratings above the entered value. (2 pts)

Ex:

Enter a rating:
5

ABOVE 5
Jersey number: 66, Rating: 9
Jersey number: 84, Rating: 7
...

In: Computer Science

Is there anyway I could get an example to set this python function set up? any...

Is there anyway I could get an example to set this python function set up? any help would be amazing.

basetonum (S, B) --- int:

  1. This function accepts as input a string S and a base B (int) where S represents a number in base B where B is between 2 and 10 inclusive. It should then return an integer in base 10 representing the same number as S. It should output 0 when S is the empty string. This function is the inverse of the previous function numtobase().

  2. Parameters: S (string), B (int)

  3. Returns : integer

  4. The function displays nothing.

  5. Steps to convert any base system to decimal:

    Step 1 − Determine the column (positional) value of each digit (this depends on the position of the digit and the base of the number system).
    Step 2 − Multiply the obtained column values (in Step 1) by the digits in the corresponding columns.

    Step 3 − Sum the products calculated in Step 2. The total is the equivalent value in decimal.

    Example with S = '11101' and B = 2 Binary Number − 11101 Calculating Decimal Equivalent −

    Nb43210 Step 1 11101 (1×2) + (1×2) + (1×2) + (0×2) + (1×2)

    Step2 11101 16+8+4+0+1 Step 3 11101 29

       

Binary Number − 11101 = Decimal Number – 29

Again, the key is to ask yourself... what has to change in order to output base B instead of base 2?

In [1]: basetonum('11101', 2) Out[1]: 29

In [2]: basetonum('', 4) Out[2]: 0

In: Computer Science

A mass of 1 slug, when attached to a spring, stretches it 2 feet. It is...

A mass of 1 slug, when attached to a spring, stretches it 2 feet. It is released from a point 1 foot above the equilibrium position with a downward velocity of 2 ft/s.

1) Find the equation of motion if the surrounding medium offers a damping force that is numerically equal to 4 times the instantaneous velocity.

2) Classify the motion as underdamped, overdamped, or critically damped.

In: Math

1) You just purchased an investment at a price of $2500. The investment promises to pay...

1) You just purchased an investment at a price of $2500. The investment promises to pay $400 in 1 year, $600 in 2 years, $800 in 3 years, $900 in 4 years, and $1200 in 5 years. What rate of return will you earn on this investment? Express your answers as a percentage. (Enter only numbers and decimals in your response. Round to 2 decimal places.)

A. You wish to save $9,000 at the end of 5 years by depositing in $1,000 into your savings account in Year 1, $1,400 in 2 years, $1,600 in 3 years, $1,800 in 4 years, and $1,900 in 5 years. What interest rate must you earn to reach to goal? Express your answers as a percentage. (Enter only numbers and decimals in your response. Round to 2 decimal places.)

B/ You just purchased an investment at a price of $3000. The investment promises to pay $400 immediately, $600 in 1 year, $800 in 2 years, $900 in 3 years, and $1200 in 4 years. What rate of return will you earn on this investment? Express your answers as a percentage. (Enter only numbers and decimals in your response. Round to 2 decimal places.)

In: Finance

The parking authority in downtown Halifax reported the following information for a sample of 260 customers...

The parking authority in downtown Halifax reported the following information for a sample of 260 customers on the number of hours cars are parked and the amount they are charged:

Number of Hours Frequency Amount Charged
1 15 $2
2 44 4
3 63 6
4 49 8
5 38 10
6 13 14
7 7 18
8 31 20
Total 260

a-1. Convert the information on the number of hours parked to a probability distribution. (Round the final answers to 3 decimal places.)

Hours Probability
1   
2   
3   
4   
5   
6   
7   
8   

a-2. Is this a discrete or a continuous probability distribution?

(Click to select)  Discrete  Continuous

b-1. Find the mean and the standard deviation of the number of hours parked. (Round the final answers to 3 decimal places.)

Mean            

Standard deviation            

b-2. How would you answer the question, how long is a typical customer parked? (Round the final answer to 3 decimal places.)

The typical customer is parked for  hours.

c. Find the mean and standard deviation of the amount charged. (Round the final answers to 2 decimal places.)

Mean            

Standard deviation            

In: Statistics and Probability

A manufacturing company produces two products, which has the following information: Characteristic Product 1 Product 2...

  1. A manufacturing company produces two products, which has the following information:

Characteristic

Product 1

Product 2

Profit/unit

$4

$2

Dept. A hours/unit

1

1

Dept. B hours/unit

2

4


Last month’s production schedule used 400 hours of labor in department A and 950 hours of labor in department B.

The management has been experiencing problems during the past six months because of variable monthly department workload amounts.

Management would like to develop a production schedule for the coming month that will achieve the following goals:

Goal 1: Use a maximum of 400 hours of labor in department A.

Goal 2: Use a maximum of 950 hours of labor in department B.

Goal 3: Earn a profit of at least $1600.

  1. Formulate a goal programming model for this problem, assuming that goal 1 is priority 1 and goal 2 is a priority 2 goal. Goal 3 is a priority 3 goal. Make sure your answers are integers.
  2. Solve the model formulated in part (a)

In: Operations Management

Sandhill Co. has had 4 years of record earnings. Due to this success, the market price...

Sandhill Co. has had 4 years of record earnings. Due to this success, the market price of its 455,000 shares of $4 par value common stock has increased from $14 per share to $54. During this period, paid-in capital remained the same at $5,460,000. Retained earnings increased from $4,095,000 to $27,300,000. CEO Don Ames is considering either (1) a 15% stock dividend or (2) a 2-for-1 stock split. He asks you to show the before-and-after effects of each option on (a) retained earnings, (b) total stockholders’ equity, and (c) par value per share.

(a)

1. Stock dividend - retained earnings $
2. 2-for-1 stock split - retained earnings $


(b)

Sandhill Co.

Original Balance

After Dividend

After Split

Paid-in capital

$

$

Retained earnings

Total stockholder’s equity

$ $ $

Shares outstanding

     


(c)

1. Stock dividend - par value per share $
2. 2-for-1 stock split - par value per share $

In: Accounting

Calculate the amount of money that will be in each of the following accounts at the end of the given deposit period:

(Compound interest with non-annual periods) Calculate the amount of money that will be in each of the following accounts at the end of the given deposit period:

Account Holder

Amount

Deposited

Annual Interest Rate

Compounding Periods per Year (M)

Compounding Periods (Years)

Theodore Logan TIT

$ 1,000

10%

1

10

Vernell Coles

95,000

12

12

1

Tina Elliott

8,000

12

6

2

Wayne Robinson

120,000

8

4

2

Eunice Chung

30,000

10

2

4

Kelly Cravens

15,000

12

3

3

In: Finance

1. Consider the cubic function f ( x ) = ax^3 + bx^2 + cx +...

1. Consider the cubic function f ( x ) = ax^3 + bx^2 + cx + d where a ≠ 0. Show that f can have zero, one, or two critical numbers and give an example of each case.

2. Use Rolle's Theorem to prove that if f ′ ( x ) = 0 for all xin an interval ( a , b ), then f is constant on ( a , b ).

3.True or False. The product of two increasing functions is increasing. Clarify your answer.

4. Find the point on the graph of f ( x ) = 4 − x 2 that is closest to the point ( 0 , 1 ).

In: Math