Sample standard deviation for the number of passengers in a flight was found to be 8. 95 percent confidence limit on the population standard deviation was computed as 5.86 and 12.62 passengers with a 95 percent confidence.
A. Estimate the sample size used
B. How would the confidence interval change if the standard deviation was based on a sample of 25?

Answers

Answer 1

The confidence interval will change if the standard deviation was based on a sample of 25. Here the new sample size is 30.54, Lower Limit = 2.72 and Upper Limit = 13.28.

Estimating the sample size used the formula to estimate the sample size used is given by:

n = [Zσ/E] ² Where, Z is the z-score, σ is the population standard deviation, E is the margin of error. The margin of error is computed as E = (z*σ) / sqrt (n) Here,σ = 8Z for 95% confidence interval = 1.96 Thus, the margin of error for a 95% confidence interval is given by: E = (1.96 * 8) / sqrt(n).

Now, as per the given information, the confidence limit on the population standard deviation was computed as 5.86 and 12.62 passengers with a 95% confidence. So, we can write this information in the following form:  σ = 5.86 and σ = 12.62 for 95% confidence Using these values in the above formula, we get two different equations:5.86 = (1.96 8) / sqrt (n) Solving this, we get n = 53.52612.62 = (1.96 8) / sqrt (n) Solving this, we get n = 12.856B. How would the confidence interval change if the standard deviation was based on a sample of 25?

If the standard deviation was based on a sample of 25, then the sample size used to estimate the population standard deviation will change. Using the formula to estimate the sample size for n, we have: n = [Zσ/E]²  The margin of error E for a 95% confidence interval for n = 25 is given by:

E = (1.96 * 8) / sqrt (25) = 3.136

Using the same formula and substituting the new values,

we get: n = [1.96 8 / 3.136] ²= 30.54

Using the new sample size of 30.54,

we can estimate the new confidence interval as follows: Lower Limit: σ = x - Z(σ/√n)σ = 8 Z = 1.96x = 8

Lower Limit = 8 - 1.96(8/√25) = 2.72

Upper Limit: σ = x + Z(σ/√n)σ = 8Z = 1.96x = 8

Upper Limit = 8 + 1.96 (8/√25) = 13.28

Therefore, to estimate the sample size used, we use the formula: n = [Zσ/E] ². The margin of error for a 95% confidence interval is given by E = (z*σ) / sqrt (n). The confidence interval will change if the standard deviation was based on a sample of 25. Here the new sample size is 30.54, Lower Limit = 2.72 and Upper Limit = 13.28.

To know more about formula visit:

brainly.com/question/20748250

#SPJ11


Related Questions

Determine limx→[infinity]​f(x) and limx→−[infinity]​f(x) for the following function. Then give the horizontal asymptotes of f, if any. f(x)=36x+66x​ Evaluate limx→[infinity]​f(x). Select the correct choice below and, if necessary, fill in the answer box to complete your choice. A. limx→[infinity]​36x+66x​=( Simplify your answer. ) B. The limit does not exist and is neither [infinity] nor −[infinity]. Evaluate limx→−[infinity]​f(x). Select the correct choice below and, if necessary, fill in the answer box to complete your choice. A. limx→−[infinity]​36x+66x​= (Simplify your answer.) B. The limit does not exist and is neither [infinity] nor −[infinity]. Give the horizontal asymptotes of f, if any. Select the correct choice below and, if necessary, fill in the answer box(es) to complete your choice. A. The function has one horizontal asymptote, (Type an equation.) B. The function has two horizontal asymptotes. The top asymptote is and the bottom asymptote is (Type equations.) C. The function has no horizontal asymptotes.

Answers

The limit limx→[infinity]​f(x) = 36, limx→−[infinity]​f(x) = 36. The function has one horizontal asymptote, y = 36. Option (a) is correct.

Given function is f(x) = 36x + 66x⁻¹We need to evaluate limx→∞​f(x) and limx→-∞​f(x) and find horizontal asymptotes, if any.Evaluate limx→∞​f(x):limx→∞​f(x) = limx→∞​(36x + 66x⁻¹)= limx→∞​(36x/x + 66/x⁻¹)We get  ∞/∞ form and hence we apply L'Hospital's rulelimx→∞​f(x) = limx→∞​(36 - 66/x²) = 36

The limit exists and is finite. Hence the correct choice is A) limx→∞​36x+66x​=36.Evaluate limx→−∞​f(x):limx→-∞​f(x) = limx→-∞​(36x + 66x⁻¹)= limx→-∞​(36x/x + 66/x⁻¹)

We get -∞/∞ form and hence we apply L'Hospital's rulelimx→-∞​f(x) = limx→-∞​(36 + 66/x²) = 36

The limit exists and is finite. Hence the correct choice is A) limx→−∞​36x+66x​=36.  Hence the horizontal asymptote is y = 36. Hence the correct choice is A) The function has one horizontal asymptote, y = 36.

The limit limx→[infinity]​f(x) = 36, limx→−[infinity]​f(x) = 36. The function has one horizontal asymptote, y = 36.

To know more about function visit :

https://brainly.com/question/30594198

#SPJ11

public class BinarySearch \{ public static void main(Stringll args) f int [1]yl ist ={1,2,3,7,10,12,20}; int result = binarysearch ( inylist, 20); if (result =−1 ) System, out, println("Not found:"); else System.out.println("The index of the input key is " + result+ ". "): y public static int binarysearch(int]l List, int key) \{ int low =0; int high = iist. length −1 while (high >= low) \& int mid =( low + high )/2; if (key < List [mid] high = mid −1; else if (key =1 ist [ mid ] ) return inid; else low = mid +1; return −1; // Not found \} l TASK 4: Binary Search in descending order We have learned and practiced the implementation of the binary search approach that works on an array in ascending order. Now let's think about how to modify the above code to make it work on an array in descending order. Name your new binary search method as "binarysearch2". Implement your own code in Eclipse, and ensure it runs without errors. Submit your source code file (.java file) and your console output screenshot. Hint: In the ascending order case, our logic is as follows: int mid =( low + high )/2 if ( key < list [mid] ) else if (key = ist [mid]) return mid; In the descending order case; what should our logic be like? (Swap two lines in the above code.)

Answers

The task involves modifying the given code to implement binary search on an array in descending order. The logic of the code needs to be adjusted accordingly.

The task requires modifying the existing code to perform binary search on an array sorted in descending order. In the original code, the logic for the ascending order was based on comparing the key with the middle element of the list. However, in the descending order case, we need to adjust the logic.

To implement binary search on a descending array, we need to swap the order of the conditions in the code. Instead of checking if the key is less than the middle element, we need to check if the key is greater than the middle element. Similarly, the condition for equality also needs to be adjusted.

The modified code for binary search in descending order would look like this:

public static int binarysearch2(int[] list, int key) {

   int low = 0;

   int high = list.length - 1;

   while (high >= low) {

       int mid = (low + high) / 2;

       if (key > list[mid])

           high = mid - 1;

       else if (key < list[mid])

           low = mid + 1;

       else

           return mid;

   }

   return -1; // Not found

}

By swapping the conditions, we ensure that the algorithm correctly searches for the key in a descending ordered array.

For more information on array visit: brainly.com/question/30891254

#SPJ11

Solve the problem. Show your work. There are 95 students on a field trip and 19 students on each buls. How many buses of students are there on the field trip?

Answers

Sorry for bad handwriting

if i was helpful Brainliests my answer ^_^

A United Nations report shows the mean family income for Mexican migrants to the United States is $26,450 per year. A FLOC (Farm Labor Organizing Committee) evaluation of 23 Mexican family units reveals a mean to be $37,190 with a sample standard deviation of $10,700. Does this information disagree with the United Nations report? Apply the 0.01 significance level.

(a) State the null hypothesis and the alternate hypothesis.

H0: µ = ________

H1: µ ? _________

(b) State the decision rule for .01 significance level. (Round your answers to 3 decimal places.)

Reject H0 if t is not between_______ and __________.

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

Value of the test statistic __________

(d) Does this information disagree with the United Nations report? Apply the 0.01 significance level.

Answers

(a) Null hypothesis (H₀): µ = $26,450

Alternate hypothesis (H1): µ ≠ $26,450

Reject H₀ if t is not between -2.807 and 2.807.

(c) Value of the test statistic 3.184.

(d) The information disagrees with the United Nations report at the 0.01 significance level since the calculated t-value falls outside the critical value range.

(a) State the null hypothesis and the alternate hypothesis:

The mean family income for Mexican migrants is $26,450 per year

H₀: µ = $26,450

The mean family income for Mexican migrants is not equal to $26,450 per year.

H₁: µ ≠ $26,450.

(b)

Reject H₀ if t is not between -2.807 and 2.807 (critical values for a two-tailed t-test with 22 degrees of freedom and a significance level of 0.01).

(c) Compute the value of the test statistic:

To compute the test statistic (t-value), we need the sample mean, the hypothesized population mean, the sample standard deviation, and the sample size.

Sample mean (X) = $37,190

Hypothesized population mean (µ) = $26,450

Sample standard deviation (s) = $10,700

Sample size (n) = 23

t-value = (X - µ) / (s / √n)

= ($37,190 - $26,450) / ($10,700 / √23)

= ($37,190 - $26,450) / ($10,700 / √23)

= $10,740 / ($10,700 / √23)

= 3.184

The calculated t-value is approximately 3.184.

d.  To determine if this information disagrees with the United Nations report, we compare the calculated t-value with the critical values for a two-tailed t-test with 22 degrees of freedom and a significance level of 0.01.

The critical values for a two-tailed t-test with a significance level of 0.01 and 22 degrees of freedom are approximately -2.807 and 2.807.

Since the calculated t-value of 3.184 falls outside the range -2.807 to 2.807, we reject the null hypothesis (H0) and conclude that there is evidence to suggest a disagreement with the United Nations report.

Therefore, based on the provided data and significance level, the information disagrees with the United Nations report.

To learn more on Statistics click:

https://brainly.com/question/30218856

#SPJ4

Assuming the population has an approximate normal distribution, if a sample size n = 30 has a sample mean = 41 with a sample standard deviation s = 10, find the margin of error at a 98% confidence level.
("Margin of error" is the same as "EBM - Error Bound for a population Mean" in your text and notesheet.) Round the answer to two decimal places.

Answers

The margin of error at a 98% confidence level is approximately 4.26.To find the margin of error (EBM - Error Bound for a Population Mean) at a 98% confidence level.

We need to use the formula:

Margin of Error = Z * (s / sqrt(n))

where Z is the z-score corresponding to the desired confidence level, s is the sample standard deviation, and n is the sample size.

For a 98% confidence level, the corresponding z-score is 2.33 (obtained from the standard normal distribution table).

Plugging in the values into the formula:

Margin of Error = 2.33 * (10 / sqrt(30))

Calculating the square root and performing the division:

Margin of Error ≈ 2.33 * (10 / 5.477)

Margin of Error ≈ 4.26

Therefore, the margin of error at a 98% confidence level is approximately 4.26.

Learn more about margin of error here:

https://brainly.com/question/29100795


#SPJ11

a model scale is 1 in. = 1.5 ft. if the actual object is 18 feet, how long is the model? a) 12 inches b) 16 inches c) 24 inches d) 27 inches

Answers

To find the length of the model, we need to use the given scale, which states that 1 inch on the model represents 1.5 feet in reality.

The length of the actual object is given as 18 feet. Let's calculate the length of the model:

Length of model = Length of actual object / Scale factor

Length of model = 18 feet / 1.5 feet/inch

Length of model = 12 inches

Therefore, the length of the model is 12 inches. Therefore, the correct option is (a) 12 inches.

Learn more about Length here :

https://brainly.com/question/29133107

#SPJ11

Latifa opens a savings account with AED 450. Each month, she deposits AED 125 into her account and does not withdraw any money from it. Write an equation in slope -intercept form of the total amount y

Answers

Therefore, the equation in slope-intercept form for the total amount, y, as a function of the number of months, x, is y = 125x + 450.

To write the equation in slope-intercept form, we need to express the total amount, y, as a function of the number of months, x. Given that Latifa opens her savings account with AED 450 and deposits AED 125 each month, the equation can be written as:

y = 125x + 450

In this equation: The coefficient of x, 125, represents the slope of the line. It indicates that the total amount increases by AED 125 for each month. The constant term, 450, represents the y-intercept. It represents the initial amount of AED 450 in the savings account.

To know more about equation,

https://brainly.com/question/29027288

#SPJ11

A machine cell uses 196 pounds of a certain material each day. Material is transported in vats that hold 26 pounds each. Cycle time for the vats is about 2.50 hours. The manager has assigned an inefficiency factor of 25 to the cell. The plant operates on an eight-hour day. How many vats will be used? (Round up your answer to the next whole number.)

Answers

The number of vats to be used is 8

Given: Weight of material used per day = 196 pounds

Weight of each vat = 26 pounds

Cycle time for each vat = 2.5 hours

Inefficiency factor assigned by manager = 25%

Time available for each day = 8 hours

To calculate the number of vats to be used, we need to calculate the time required to transport the total material by the available vats.

So, the number of vats required = Total material weight / Weight of each vat

To calculate the total material weight transported in 8 hours, we need to calculate the time required to transport the weight of one vat.

Total time to transport one vat = Cycle time for each vat / Inefficiency factor

Time to transport one vat = 2.5 / 1.25

(25% inefficiency = 1 - 0.25 = 0.75 efficiency factor)

Time to transport one vat = 2 hours

Total number of vats required = Total material weight / Weight of each vat

Total number of vats required = 196 / 26 = 7.54 (approximately)

Therefore, the number of vats to be used is 8 (rounded up to the next whole number).

Answer: 8 vats will be used.

To know more about vats visit:

https://brainly.com/question/20628016

#SPJ11

6. (i) Find the image of the triangle region in the z-plane bounded by the lines x=0, y=0 and x+y=1 under the transformation w=(1+2 i) z+(1+i) . (ii) Find the image of the region boun

Answers

i. We create a triangle in the w-plane by connecting these locations.

ii. We create a quadrilateral in the w-plane by connecting these locations.

(i) To find the image of the triangle region in the z-plane bounded by the lines x=0, y=0, and x+y=1 under the transformation w=(1+2i)z+(1+i), we can substitute the vertices of the triangle into the transformation equation and examine the resulting points in the w-plane.

Let's consider the vertices of the triangle:

Vertex 1: (0, 0)

Vertex 2: (1, 0)

Vertex 3: (0, 1)

For Vertex 1: z = 0

w = (1+2i)(0) + (1+i) = 1+i

For Vertex 2: z = 1

w = (1+2i)(1) + (1+i) = 2+3i

For Vertex 3: z = i

w = (1+2i)(i) + (1+i) = -1+3i

Now, let's plot these points in the w-plane:

Vertex 1: (1, 1)

Vertex 2: (2, 3)

Vertex 3: (-1, 3)

Connecting these points, we obtain a triangle in the w-plane.

(ii) To find the image of the region bounded by 1≤x≤2 and 1≤y≤2 under the transformation w=z², we can substitute the boundary points of the region into the transformation equation and examine the resulting points in the w-plane.

Let's consider the boundary points:

Point 1: (1, 1)

Point 2: (2, 1)

Point 3: (2, 2)

Point 4: (1, 2)

For Point 1: z = 1+1i

w = (1+1i)² = 1+2i-1 = 2i

For Point 2: z = 2+1i

w = (2+1i)² = 4+4i-1 = 3+4i

For Point 3: z = 2+2i

w = (2+2i)² = 4+8i-4 = 8i

For Point 4: z = 1+2i

w = (1+2i)² = 1+4i-4 = -3+4i

Now, let's plot these points in the w-plane:

Point 1: (0, 2)

Point 2: (3, 4)

Point 3: (0, 8)

Point 4: (-3, 4)

Connecting these points, we obtain a quadrilateral in the w-plane.

Learn more about triangle on:

https://brainly.com/question/11070154

#SPJ11

Write the balanced net ionic equation for the reaction that occurs in the following case: {Cr}_{2}({SO}_{4})_{3}({aq})+({NH}_{4})_{2} {CO}_{

Answers

The balanced net ionic equation for the reaction between Cr₂(SO₄)3(aq) and (NH₄)2CO₃(aq) is Cr₂(SO₄)3(aq) + 3(NH4)2CO₃(aq) -> Cr₂(CO₃)3(s). This equation represents the chemical change where solid Cr₂(CO₃)3 is formed, and it omits the spectator ions (NH₄)+ and (SO₄)2-.

To write the balanced net ionic equation, we first need to write the complete balanced equation for the reaction, and then eliminate any spectator ions that do not participate in the overall reaction.

The balanced complete equation for the reaction between Cr₂(SO₄)₃(aq) and (NH₄)2CO₃(aq) is:

Cr₂(SO₄)₃(aq) + 3(NH₄)2CO₃(aq) -> Cr₂(CO₃)₃(s) + 3(NH₄)2SO₄(aq)

To write the net ionic equation, we need to eliminate the spectator ions, which are the ions that appear on both sides of the equation without undergoing any chemical change. In this case, the spectator ions are (NH₄)+ and (SO₄)₂-.

The net ionic equation for the reaction is:

Cr₂(SO₄)3(aq) + 3(NH₄)2CO₃(aq) -> Cr₂(CO₃)3(s)

In the net ionic equation, only the species directly involved in the chemical change are shown, which in this case is the formation of solid Cr₂(CO₃)₃.

To know more about net ionic equation refer here:

https://brainly.com/question/13887096#

#SPJ11

How many ways can you create words using the letters U,S,C where (i) each letter is used at least once; (ii) the total length is 6 ; (iii) at least as many U 's are used as S 's; (iv) at least as many S ′
's are used as C ′
's; (v) and the word is lexicographically first among all of its rearrangements.

Answers

We can create 19 words using the letters U, S, and C where each letter is used at least once and the total length is 6, and at least as many Us as Ss and at least as many Ss as Cs

The given letters are U, S, and C. There are 4 different cases we can create words using the letters U, S, and C.

All letters are distinct: In this case, we have 3 letters to choose from for the first letter, 2 letters to choose from for the second letter, and only 1 letter to choose from for the last letter.

So the total number of ways to create words using the letters U, S, and C is 3 x 2 x 1 = 6.

Two letters are the same and one letter is different: In this case, there are 3 ways to choose the letter that is different from the other two letters.

There are 3C2 = 3 ways to choose the positions of the two identical letters. The total number of ways to create words using the letters U, S, and C is 3 x 3 = 9.

Two letters are the same and the third letter is also the same: In this case, there are only 3 ways to create the word USC, USU, and USS.

All three letters are the same: In this case, we can only create one word, USC.So, the total number of ways to create words using the letters U, S, and C is 6 + 9 + 3 + 1 = 19

Therefore, we can create 19 words using the letters U, S, and C where each letter is used at least once and the total length is 6, and at least as many Us as Ss and at least as many Ss as Cs, and the word is lexicographically first among all of its rearrangements.

To know more about number of ways visit:

brainly.com/question/30649502

#SPJ11

1. Which of the following are differential cquations? Circle all that apply. (a) m dtdx =p (c) y ′ =4x 2 +x+1 (b) f(x,y)=x 2e 3xy (d) dt 2d 2 z​ =x+21 2. Determine the order of the DE:dy/dx+2=−9x.

Answers

The order of the given differential equation dy/dx + 2 = -9x is 1.

The differential equations among the given options are:

(a) m dtdx = p

(c) y' = 4x^2 + x + 1

(d) dt^2 d^2z/dx^2 = x + 2

Therefore, options (a), (c), and (d) are differential equations.

Now, let's determine the order of the differential equation dy/dx + 2 = -9x.

The order of a differential equation is determined by the highest order derivative present in the equation. In this case, the highest order derivative is dy/dx, which is a first-order derivative.

Learn more about differential equation here

https://brainly.com/question/32645495

#SPJ11

Two friends, Hayley and Tori, are working together at the Castroville Cafe today. Hayley works every 8 days, and Tori works every 4 days. How many days do they have to wait until they next get to work

Answers

Hayley and Tori will have to wait 8 days until they next get to work together.

To determine the number of days they have to wait until they next get to work together, we need to find the least common multiple (LCM) of their work cycles, which are 8 days for Hayley and 4 days for Tori.

The LCM of 8 and 4 is the smallest number that is divisible by both 8 and 4. In this case, it is 8, as 8 is divisible by both 8 and 4.

Therefore, Hayley and Tori will have to wait 8 days until they next get to work together.

We can also calculate this by considering the cycles of their work schedules. Hayley works every 8 days, so her work days are 8, 16, 24, 32, and so on. Tori works every 4 days, so her work days are 4, 8, 12, 16, 20, 24, and so on. The common day in both schedules is 8, which means they will next get to work together on day 8.

Hence, the answer is that they have to wait 8 days until they next get to work together.

To know more about Number visit-

brainly.com/question/3589540

#SPJ11

Problem 5. Imagine it is the summer of 2004 and you have just started your first (sort-of) real job as a (part-time) reservations sales agent for Best Western Hotels & Resorts 1
. Your base weekly salary is $450, and you receive a commission of 3% on total sales exceeding $6000 per week. Let x denote your total sales (in dollars) for a particular week. (a) Define the function P by P(x)=0.03x. What does P(x) represent in this context? (b) Define the function Q by Q(x)=x−6000. What does Q(x) represent in this context? (c) Express (P∘Q)(x) explicitly in terms of x. (d) Express (Q∘P)(x) explicitly in terms of x. (e) Assume that you had a good week, i.e., that your total sales for the week exceeded $6000. Define functions S 1

and S 2

by the formulas S 1

(x)=450+(P∘Q)(x) and S 2

(x)=450+(Q∘P)(x), respectively. Which of these two functions correctly computes your total earnings for the week in question? Explain your answer. (Hint: If you are stuck, pick a value for x; plug this value into both S 1

and S 2

, and see which of the resulting outputs is consistent with your understanding of how your weekly salary is computed. Then try to make sense of this for general values of x.)

Answers

(a) function P(x) represents the commission you earn based on your total sales x.

(b) The function Q(x) represents the amount by which your total sales x exceeds $6000.

(c) The composition (P∘Q)(x) represents the commission earned after the amount by which total sales exceed $6000 has been determined.

(d) The composition (Q∘P)(x) represents the amount by which the commission is subtracted from the total sales.

(e) S1(x) = 450 + 0.03(x − 6000) correctly computes your total earnings for the week by considering both the base salary and the commission earned on sales exceeding $6000.

(a) In this context, the function P(x) represents the commission you earn based on your total sales x. It is calculated as 3% of the total sales amount.

(b) The function Q(x) represents the amount by which your total sales x exceeds $6000. It calculates the difference between the total sales and the threshold of $6000.

(c) The composition (P∘Q)(x) represents the commission earned after the amount by which total sales exceed $6000 has been determined. It can be expressed as (P∘Q)(x) = P(Q(x)) = P(x − 6000) = 0.03(x − 6000).

(d) The composition (Q∘P)(x) represents the amount by which the commission is subtracted from the total sales. It can be expressed as (Q∘P)(x) = Q(P(x)) = Q(0.03x) = 0.03x − 6000.

(e) The function S1(x) = 450 + (P∘Q)(x) correctly computes your total earnings for the week. It takes into account the base salary of $450 and adds the commission earned after subtracting $6000 from the total sales. This is consistent with the understanding that your total earnings include both the base salary and the commission.

Function S2(x) = 450 + (Q∘P)(x) does not correctly compute your total earnings for the week. It adds the commission first and then subtracts $6000 from the total sales, which would result in an incorrect calculation of earnings.

To learn more about functions: https://brainly.com/question/11624077

#SPJ11

Wendy's cupcakes cost P^(10) a box. If the cupcakes are sold for P^(16), what is the percent of mark -up based on cost?

Answers

The percent markup based on cost is (P^(6) - 1) x 100%.

To calculate the percent markup based on cost, we need to find the difference between the selling price and the cost, divide that difference by the cost, and then express the result as a percentage.

The cost of a box of Wendy's cupcakes is P^(10). The selling price is P^(16). So the difference between the selling price and the cost is:

P^(16) - P^(10)

We can simplify this expression by factoring out P^(10):

P^(16) - P^(10) = P^(10) (P^(6) - 1)

Now we can divide the difference by the cost:

(P^(16) - P^(10)) / P^(10) = (P^(10) (P^(6) - 1)) / P^(10) = P^(6) - 1

Finally, we can express the result as a percentage by multiplying by 100:

(P^(6) - 1) x 100%

Therefore, the percent markup based on cost is (P^(6) - 1) x 100%.

learn more about percent markup here

https://brainly.com/question/5189512

#SPJ11

3 of 25 After running a coiled tubing unit for 81 minutes, Tom has 9,153 feet of coiled tubing in the well. After running the unit another 10 minutes, he has 10,283 feet of tubing in the well. His call sheet shows he needs a total of 15,728 feet of tubing in the well. How many more feet of coiled tubing does he need to run into the well? feet 4 of 25 Brendan is running coiled tubing in the wellbore at a rate of 99.4 feet a minute. At the end of 8 minutes he has 795.2 feet of coiled tubing inside the wellbore. After 2 more minutes he has run an additional 198.8 feet into the wellbore. How many feet of coiled tubing did Brendan run in the wellbore altogether? 5 of 25 Coiled tubing is being run into a 22,000 foot wellbore at 69.9 feet per minute. It will take a little more than 5 hours to reach the bottom of the well. After the first four hours, how deep, in feet, is the coiled tubing? feet

Answers

3) The extra number of feet of coiled tubing Tom needs to run into the well is: 5445 ft

4) The total length of coiled tubing Brendan ran in the wellbore is: 994 ft

5) The distance that the coiled tubing has reached after the first four hours is:  a depth of 16,776 feet in the well.

How to solve Algebra Word Problems?

3) Initial amount of coiled tubing he had after 81 minutes = 9,153 feet

Amount of tubing after another 10 minutes = 10,283 feet

The total tubing required = 15,728 feet.

The extra number of feet of coiled tubing Tom needs to run into the well is: Needed tubing length - Current tubing length

15,728 feet - 10,283 feet = 5,445 feet

4) Speed at which Brendan is running coiled tubing = 99.4 feet per minute.

Coiled tubing inside the wellbore after 8 minutes is: 795.2 feet

Coiled tubing inside the wellbore after 2 more minutes is: 198.8 feet

The total length of coiled tubing Brendan ran in the wellbore is:

Total length = Initial length + Additional length

Total length =  795.2 feet + 198.8 feet

Total Length = 994 feet

5) Rate at which coiled tubing is being run into a 22,000-foot wellbore = 69.9 feet per minute. After the first four hours, we need to determine how deep the coiled tubing has reached.

A time of 4 hours is same as 240 minutes

Thus, the distance covered in the first four hours is:

Distance = Rate * Time

Distance = 69.9 feet/minute * 240 minutes

Distance = 16,776 feet

Read more about Algebra Word Problems at: https://brainly.com/question/21405634

#SPJ4

. Give an example of a relation with the following characteristics: The relation is a function containing two ordered pairs. Reversing the components in each ordered pair results in a relation that is not a function.

Answers

A relation with the following characteristics is { (3, 5), (6, 5) }The two ordered pairs in the above relation are (3,5) and (6,5).When we reverse the components of the ordered pairs, we obtain {(5,3),(5,6)}.

If we want to obtain a function, there should be one unique value of y for each value of x. Let's examine the set of ordered pairs obtained after reversing the components:(5,3) and (5,6).

The y-value is the same for both ordered pairs, i.e., 5. Since there are two different x values that correspond to the same y value, this relation fails to be a function.The above example is an instance of a relation that satisfies the mentioned characteristics.

To know more about ordered pairs visit:

https://brainly.com/question/28874341

#SPJ11

63% of owned dogs in the United States are spayed or neutered. Round your answers to four decimal places. If 46 owned dogs are randomly selected, find the probability that
a. Exactly 28 of them are spayed or neutered.
b. At most 28 of them are spayed or neutered.
c. At least 28 of them are spayed or neutered.
d. Between 26 and 32 (including 26 and 32) of them are spayed or neutered.
Hint:
Hint
Video on Finding Binomial Probabilities

Answers

a. The probability that exactly 28 dogs are spayed or neutered is 0.1196.

b. The probability that at most 28 dogs are spayed or neutered is 0.4325.

c. The probability that at least 28 dogs are spayed or neutered is 0.8890.

d. The probability that between 26 and 32 dogs (inclusive) are spayed or neutered is 0.9911.

To solve the given probability questions, we will use the binomial distribution formula. Let's denote the probability of a dog being spayed or neutered as p = 0.63, and the number of trials as n = 46.

a. To find the probability of exactly 28 dogs being spayed or neutered, we use the binomial probability formula:

P(X = 28) = (46 choose 28) * (0.63^28) * (0.37^18)

b. To find the probability of at most 28 dogs being spayed or neutered, we sum the probabilities from 0 to 28:

P(X <= 28) = P(X = 0) + P(X = 1) + ... + P(X = 28)

c. To find the probability of at least 28 dogs being spayed or neutered, we subtract the probability of fewer than 28 dogs being spayed or neutered from 1:

P(X >= 28) = 1 - P(X < 28)

d. To find the probability of between 26 and 32 dogs being spayed or neutered (inclusive), we sum the probabilities from 26 to 32:

P(26 <= X <= 32) = P(X = 26) + P(X = 27) + ... + P(X = 32)

By substituting the appropriate values into the binomial probability formula and performing the calculations, we can find the probabilities for each scenario.

Therefore, by utilizing the binomial distribution formula, we can determine the probabilities of specific outcomes related to the number of dogs being spayed or neutered out of a randomly selected group of 46 dogs.

To know more about probability, visit:

https://brainly.com/question/32716523

#SPJ11

Please answer the (b)(ii)
b) The height h(t) of a ferris wheel car above the ground after t minutes (in metres) can be modelled by: h(t)=15.55+15.24 sin (8 \pi t) . This ferris wheel has a diameter of 30.4

Answers

(b)(ii)  The maximum height of the ferris wheel car above the ground is 30.79 meters.

To find the maximum and minimum height of the ferris wheel car above the ground, we need to find the maximum and minimum values of the function h(t).

The function h(t) is of the form h(t) = a + b sin(c t), where a = 15.55, b = 15.24, and c = 8π. The maximum and minimum values of h(t) occur when sin(c t) takes on its maximum and minimum values of 1 and -1, respectively.

Maximum height:

When sin(c t) = 1, we have:

h(t) = a + b sin(c t)

= a + b

= 15.55 + 15.24

= 30.79

Therefore, the maximum height of the ferris wheel car above the ground is 30.79 meters.

Minimum height:

When sin(c t) = -1, we have:

h(t) = a + b sin(c t)

= a - b

= 15.55 - 15.24

= 0.31

Therefore, the minimum height of the ferris wheel car above the ground is 0.31 meters.

Note that the diameter of the ferris wheel is not used in this calculation, as it only provides information about the physical size of the wheel, but not its height at different times.

Learn more about "ferris wheel car" : https://brainly.com/question/11306671

#SPJ11

The sum of the digits of a two-digit number is seventeen. The number with the digits reversed is thirty more than 5 times the tens' digit of the original number. What is the original number?

Answers

The original number is 10t + o = 10(10) + 7 = 107.

Let's call the tens digit of the original number "t" and the ones digit "o".

From the problem statement, we know that:

t + o = 17   (Equation 1)

And we also know that the number with the digits reversed is thirty more than 5 times the tens' digit of the original number. We can express this as an equation:

10o + t = 5t + 30   (Equation 2)

We can simplify Equation 2 by subtracting t from both sides:

10o = 4t + 30

Now we can substitute Equation 1 into this equation to eliminate o:

10(17-t) = 4t + 30

Simplifying this equation gives us:

170 - 10t = 4t + 30

Combining like terms gives us:

140 = 14t

Dividing both sides by 14 gives us:

t = 10

Now we can use Equation 1 to solve for o:

10 + o = 17

o = 7

So the original number is 10t + o = 10(10) + 7 = 107.

Learn more about number  from

https://brainly.com/question/27894163

#SPJ11

What is the probability of rolling a 1 on a die or rolling an even number on a die? P(E)=P( rolling a 1) −P( rolling an even number) P(E)=P( rolling a 1) ×P( rolling an even number) P(E)=P( rolling a 1 )+P( rolling an even number) P(E)=P( rolling a 1) /P( rolling an even number) Saved In a binomial distribution, which R function would we use to calculate a value given the probability of the outcome being less than that value: qbinom() pbinom() dbinom() rbinom0 ( )

Answers

The probability of rolling a 1 on a die or rolling an even number on a die is 1/3. This is because the probability of rolling a 1 is 1/6, the probability of rolling an even number is 1/2

The probability of rolling a 1 on a die or rolling an even number on a die is P(E) = P(rolling a 1) + P(rolling an even number).

There are six possible outcomes of rolling a die: 1, 2, 3, 4, 5, or 6.

There are three even numbers: 2, 4, and 6. So, the probability of rolling an even number is 3/6, which simplifies to 1/2 or 0.5.

The probability of rolling a 1 is 1/6.

Therefore, P(E) = 1/6 + 1/2 = 2/6 or 1/3.

The correct answer is P(E) = P(rolling a 1) + P(rolling an even number).

If we roll a die, then there are six possible outcomes, which are 1, 2, 3, 4, 5, and 6.

There are three even numbers, which are 2, 4, and 6, and there is only one odd number, which is 1.

Thus, the probability of rolling an even number is P(even) = 3/6 = 1/2, and the probability of rolling an odd number is P(odd) = 1/6.

The question asks for the probability of rolling a 1 or an even number. We can solve this problem by using the addition rule of probability, which states that the probability of A or B happening is the sum of the probabilities of A and B, minus the probability of both A and B happening.

We can write this as:

P(1 or even) = P(1) + P(even) - P(1 and even)

However, the probability of rolling a 1 and an even number at the same time is zero, because they are mutually exclusive events.

Therefore, P(1 and even) = 0, and we can simplify the equation as follows:P(1 or even) = P(1) + P(even) = 1/6 + 1/2 = 2/6 = 1/3

In conclusion, the probability of rolling a 1 on a die or rolling an even number on a die is 1/3. This is because the probability of rolling a 1 is 1/6, the probability of rolling an even number is 1/2, and the probability of rolling a 1 and an even number at the same time is 0. To solve this problem, we used the addition rule of probability and found that P(1 or even) = P(1) + P(even) - P(1 and even) = 1/6 + 1/2 - 0 = 1/3. Therefore, the answer is P(E) = P(rolling a 1) + P(rolling an even number).

To know more about probability visit:

brainly.com/question/31828911

#SPJ11

The cost of operating a Frisbee company in the first year is $10,000 plus $2 for each Frisbee. Assuming the company sells every Frisbee it makes in the first year for $7, how many Frisbees must the company sell to break even? A. 1,000 B. 1,500 C. 2,000 D. 2,500 E. 3,000

Answers

The revenue can be calculated by multiplying the selling price per Frisbee ($7) , company must sell 2000 Frisbees to break even. The answer is option C. 2000.

In the first year, a Frisbee company's operating cost is $10,000 plus $2 for each Frisbee.

The company sells each Frisbee for $7.

The number of Frisbees the company must sell to break even is the point where its revenue equals its expenses.

To determine the number of Frisbees the company must sell to break even, use the equation below:

Revenue = Expenseswhere, Revenue = Price of each Frisbee sold × Number of Frisbees sold

Expenses = Operating cost + Cost of producing each Frisbee

Using the values given in the question, we can write the equation as:

To break even, the revenue should be equal to the cost.

Therefore, we can set up the following equation:

$7 * x = $10,000 + $2 * x

Now, we can solve this equation to find the value of x:

$7 * x - $2 * x = $10,000

Simplifying:

$5 * x = $10,000

Dividing both sides by $5:

x = $10,000 / $5

x = 2,000

7x = 2x + 10000

Where x represents the number of Frisbees sold

Multiplying 7 on both sides of the equation:7x = 2x + 10000  

5x = 10000x = 2000

For more related questions on revenue:

https://brainly.com/question/29567732

#SPJ8

If matrix A has det(A)=−2, and B is the matrix foed when two elementary row operations are perfoed on A, what is det(B) ? det(B)=−2 det(B)=4 det(B)=−4 More infoation is needed to find the deteinant. det(B)=2

Answers

The determinant of the matrix B is (a) det(A) = -2

How to calculate the determinant of the matrix B

from the question, we have the following parameters that can be used in our computation:

det(A) = -2

We understand that

B is the matrix formed when two elementary row operations are performed on A

By definition;

The determinant of a matrix is unaffected by elementary row operations.

using the above as a guide, we have the following:

det(B) = det(A) = -2.

Hence, the determinant of the matrix B is -2

Read more about matrix at

https://brainly.com/question/11989522

#SPJ1

Find a degree 3 polynomial having zeros 1,-1 and 2 and leading coefficient equal to 1 . Leave the answer in factored form.

Answers

A polynomial of degree 3 having zeros at 1, -1 and 2 and leading coefficient 1 is required. Let's begin by finding the factors of the polynomial.

Explanation Since 1, -1 and 2 are the zeros of the polynomial, their respective factors are:

[tex](x-1), (x+1) and (x-2)[/tex]

Multiplying all the factors gives us the polynomial:

[tex]p(x)= (x-1)(x+1)(x-2)[/tex]

Expanding this out gives us:

[tex]p(x) = (x^2 - 1)(x-2)[/tex]

[tex]p(x) = x^3 - 2x^2 - x + 2[/tex]

To know more about polynomial visit:

https://brainly.com/question/26227783

#SPJ11

Consider the ODE dxdy​=2sech(4x)y7−x4y,x>0,y>0. Using the substitution u=y−6, the ODE can be written as dxdu​ (give your answer in terms of u and x only).

Answers

This equation represents the original ODE after the substitution has been made. dx/du = 2sech(4x)((u + 6)^7 - x^4(u + 6))

To find the ODE in terms of u and x using the given substitution, we start by expressing y in terms of u:

u = y - 6

Rearranging the equation, we get:

y = u + 6

Next, we differentiate both sides of the equation with respect to x:

dy/dx = du/dx

Now, we substitute the expressions for y and dy/dx back into the original ODE:

dx/dy = 2sech(4x)(y^7 - x^4y)

Replacing y with u + 6, we have:

dx/dy = 2sech(4x)((u + 6)^7 - x^4(u + 6))

Finally, we substitute dy/dx = du/dx back into the equation:

dx/du = 2sech(4x)((u + 6)^7 - x^4(u + 6))

Thus, the ODE in terms of u and x is:

dx/du = 2sech(4x)((u + 6)^7 - x^4(u + 6))

This equation represents the original ODE after the substitution has been made.

Learn more about ODE

https://brainly.com/question/31593405

#SPJ11

Chloe loans out a sum of $1,000 every quarter to her associates at an interest rate of 4%, compounded quarterly. How much does she stand to gain if er loans are repaid after three years? A) $15,025.8 B)$15,318.6

Answers

A) $15,025.8. is the correct option. Chloe loans out a sum of $1,000 every quarter to her associates at an interest rate of 4%, compounded quarterly. She stand to get $15,025.8. if er loans are repaid after three years.

Chloe loans out a sum of $1,000 every quarter to her associates at an interest rate of 4%, compounded quarterly.

We need to find how much she stands to gain if er loans are repaid after three years.

Calculation: Semi-annual compounding = Quarterly compounding * 4 Quarterly interest rate = 4% / 4 = 1%

Number of quarters in three years = 3 years × 4 quarters/year = 12 quarters

Future value of $1,000 at 1% interest compounded quarterly after 12 quarters:

FV = PV(1 + r/m)^(mt) Where PV = 1000, r = 1%, m = 4 and t = 12 quartersFV = 1000(1 + 0.01/4)^(4×12)FV = $1,153.19

Total amount loaned out in 12 quarters = 12 × $1,000 = $12,000

Total interest earned = $1,153.19 - $12,000 = $-10,846.81

Therefore, Chloe stands to lose $10,846.81 if all her loans are repaid after three years.

Hence, the correct option is A) $15,025.8.

To know more about compounded quarterly visit:

brainly.com/question/33359365

#SPJ11

\section*{Problem 2}
\subsection*{Part 1}
Which of the following arguments are valid? Explain your reasoning.\\
\begin{enumerate}[label=(\alph*)]
\item I have a student in my class who is getting an $A$. Therefore, John, a student in my class, is getting an $A$. \\\\
%Enter your answer below this comment line.
\\\\
\item Every Girl Scout who sells at least 30 boxes of cookies will get a prize. Suzy, a Girl Scout, got a prize. Therefore, Suzy sold at least 30 boxes of cookies.\\\\
%Enter your answer below this comment line.
\\\\
\end{enumerate}
\subsection*{Part 2}
Determine whether each argument is valid. If the argument is valid, give a proof using the laws of logic. If the argument is invalid, give values for the predicates $P$ and $Q$ over the domain ${a,\; b}$ that demonstrate the argument is invalid.\\
\begin{enumerate}[label=(\alph*)]
\item \[
\begin{array}{||c||}
\hline \hline
\exists x\, (P(x)\; \land \;Q(x) )\\
\\
\therefore \exists x\, Q(x)\; \land\; \exists x \,P(x) \\
\hline \hline
\end{array}
\]\\\\
%Enter your answer here.
\\\\
\item \[
\begin{array}{||c||}
\hline \hline
\forall x\, (P(x)\; \lor \;Q(x) )\\
\\
\therefore \forall x\, Q(x)\; \lor \; \forall x\, P(x) \\
\hline \hline
\end{array}
\]\\\\
%Enter your answer here.
\\\\
\end{enumerate}
\newpage
%--------------------------------------------------------------------------------------------------

Answers

The argument is invalid because just one student getting an A does not necessarily imply that every student gets an A in the class. There might be more students in the class who aren't getting an A.

Therefore, the argument is invalid. The argument is valid. Since Suzy received a prize and according to the statement in the argument, every girl scout who sells at least 30 boxes of cookies will get a prize, Suzy must have sold at least 30 boxes of cookies. Therefore, the argument is valid.

a. The argument is invalid. Let's consider the domain to be

[tex]${a,\; b}$[/tex]

Let [tex]$P(a)$[/tex] be true,[tex]$Q(a)$[/tex] be false and [tex]$Q(b)$[/tex] be true.

Then, [tex]$\exists x\, (P(x)\; \land \;Q(x))$[/tex] is true because [tex]$P(a) \land Q(a)$[/tex] is true.

However, [tex]$\exists x\, Q(x)\; \land\; \exists x \,P(x)$[/tex] is false because [tex]$\exists x\, Q(x)$[/tex] is true and [tex]$\exists x \,P(x)$[/tex] is false.

Therefore, the argument is invalid.

b. The argument is invalid.

Let's consider the domain to be

[tex]${a,\; b}$[/tex]

Let [tex]$P(a)$[/tex] be true and [tex]$Q(b)$[/tex]be true.

Then, [tex]$\forall x\, (P(x)\; \lor \;Q(x) )$[/tex] is true because [tex]$P(a) \lor Q(a)$[/tex] and [tex]$P(b) \lor Q(b)$[/tex] are true.

However, [tex]$\forall x\, Q(x)\; \lor \; \forall x\, P(x)$[/tex] is false because [tex]$\forall x\, Q(x)$[/tex] is false and [tex]$\forall x\, P(x)$[/tex] is false.

Therefore, the argument is invalid.

To know more about argument visit:

https://brainly.com/question/2645376

#SPJ11

Solve the equation.
2x+3-2x = -+²x+5
42
If necessary:
Combine Terms
Apply properties:
Add
Multiply
Subtract
Divide

Answers

The solution to the equation is -1.5 or -3/2.

How to solve equations?

We have the equation:

x² + 3-2x= 1+ x² +5

Combine Terms and subtract x² from both sides:

x² - x² + 3 -2x = 1 + 5 + x² - x²

3 -2x = 1 + 5

Add:

3 -2x = 6

Combine Terms and subtract 3 from both sides:

-2x + 3 -3 = 6 - 3

-2x = 3

Dividing by -2 we get:

x = 3/(-2)

x = -3/2

x = -1.5

Learn more about equations on:

brainly.com/question/19297665

#SPJ1

Apply the Empirical Rule to identify the values and percentages within one, two, and three standard deviations for cell phone bills with an average of $55.00 and a standard deviation of $11.00.

Answers

The values and percentages within one, two, and three standard deviations for cell phone bills with an average of $55.00 and a standard deviation of $11.00 are:$44.00 to $66.00 with 68% of values $33.00 to $77.00 with 95% of values $22.00 to $88.00 with 99.7% of values.


The Empirical Rule can be applied to find out the percentage of values within one, two, or three standard deviations from the mean for a given set of data.

For the given set of data of cell phone bills with an average of $55.00 and a standard deviation of $11.00,we can apply the Empirical Rule to identify the values and percentages within one, two, and three standard deviations.

The Empirical Rule is as follows:About 68% of the values lie within one standard deviation from the mean.About 95% of the values lie within two standard deviations from the mean.About 99.7% of the values lie within three standard deviations from the mean.

Using the above rule, we can identify the values and percentages within one, two, and three standard deviations for cell phone bills with an average of $55.00 and a standard deviation of $11.00 as follows:

One Standard Deviation:One standard deviation from the mean is given by $55.00 ± $11.00 = $44.00 to $66.00.

The percentage of values within one standard deviation from the mean is 68%.

Two Standard Deviations:Two standard deviations from the mean is given by $55.00 ± 2($11.00) = $33.00 to $77.00.

The percentage of values within two standard deviations from the mean is 95%.

Three Standard Deviations:Three standard deviations from the mean is given by $55.00 ± 3($11.00) = $22.00 to $88.00.

The percentage of values within three standard deviations from the mean is 99.7%.

Thus, the values and percentages within one, two, and three standard deviations for cell phone bills with an average of $55.00 and a standard deviation of $11.00 are:$44.00 to $66.00 with 68% of values$33.00 to $77.00 with 95% of values$22.00 to $88.00 with 99.7% of values.


To know more about standard deviations click here:

https://brainly.com/question/13498201

#SPJ11

an airplane has crashed on a deserted island off the coast of fiji. the survivors are forced to learn new behaviors in order to adapt to the situation and each other.

Answers

In a case whereby the  survivors are forced to learn new behaviors in order to adapt to the situation and each other. This is an example of Emergent norm theory.

What is Emergent norm?

According to the emerging norm theory, groups of people congregate when a crisis causes them to reassess their preconceived notions of acceptable behavior and come up with new ones.

When a crowd gathers, neither a leader nor any specific norm for crowd conduct exist. Emerging conventions emerged on their own, such as the employment of umbrellas as a symbol of protest and as a defense against police pepper spray. To organize protests, new communication tools including encrypted messaging applications were created.

Learn more about behaviors   at:

https://brainly.com/question/1741474

#SPJ4

complete question;

An airplane has crashed on a deserted island off the coast of Fiji. The survivors are forced to learn new behaviors in order to adapt to the situation and each other. This is an example of which theory?

Other Questions
Scenario: In the United Kingdom it is recommended that adults consume at least 5 portions of a variety of fruit and vegetables every day. An adult portion of fruit or vegetables is 80 g. "In 2018 , only 28% of adults were eating the recommended five portions of fruit and vegetables per day - and the average (mean) was 3.7 portions per day. Fewer men than women meet the five-a-day guideline, and young people aged 16 to 24 are also less likely than other adults to get their five-a-day. .1 1 During patient exposure, which type of beam attenuation occurs MOST frequently?a. Coherent scatteringb. Photoelectric absorptionc. Bremsstrahlung radiationd. Compton scattering 2.4m-long string is fixed at both ends and tightened until the wave speed is 40m/s .What is the frequency of the standing wave shown in the figure? (in Hz) wars have so far vanished as to be legendary affairs of the past. now a man travels from one country to another as if it were his native land. we are no longer frightened by the cilician pass or by the narrow sandy tracks that lead from arabia to egypt. we are not dismayed by the height of mountains or the vast breadth of rivers or by inhospitable tribes or barbarians. to be a roman citizen is a sufficient guarantee of safety. after venezuela declared its freedom from spain, dictators ruled the country for how many years Which of the following women would be most likely to benefit from hormone therapy?a) A 70-year-old woman who completed menopause naturally 20 years agob) A 41-year-old otherwise healthy woman who is experiencing early menopause due to cancer treatmentc) A 60-year-old woman who experienced menopause 15 years ago after a hysterectomyd) A 50-year-old woman who smokes, has a history of breast cancer, and is experiencing menopause cansomeone show me the work on how to get those answers? thankyou13) 50 {ml}= A) 5 10^{2} B) 5 10^{3} C) 0.05 (D) 5 10^{-2} E) None of the above 14) 665 centiliters = A) 6.65 10^{0} B) 6.65 \ As you have learned throughout the course, salespeople need to be ethical in their conduct in order to be successful long-term. Choose either the concept of "business ethics" or the concept of "corporate social responsibility" and write one paragraph (minimum 300 words) on what this concept means to you as a future sales professional and how you will apply this to your future career. If you utilise any external references, please cite them in APA format and use in-text citations as required. Two friends, Hayley and Tori, are working together at the Castroville Cafe today. Hayley works every 8 days, and Tori works every 4 days. How many days do they have to wait until they next get to work G!aspen ine coerates a chan of doughnut shops. The company is considering two possele expansion plans. Plan A would open eight smallor shops at a cost of S8,740, cco. Expected anfual net cashinfown are $1,450,000 with zano residual vilue at the end of ten years. Under Plan B, Glascoe would open throe larger shops at a cost of $8,440,000. This plan is expected to generafe net cosh infiows of 51,300,000 per year for ten years, the estimated sle of the properties. Estimated residual value is $925,000. Glascoe uses atraight-fine depreciasion and requires an anrital return of B in (Clck the icon to vow the present value factor table] (Cick the icon to view the presert value annuity tactor tablis) (Click tre ionn bo vow the future value factor table.) (Cick the icon to viow the future valien arnuly factor tatio? Read the ceakiterneras. Requirement 1. Compute the paptack period, the AFR, and the NPV of these two ptans. What are the theoghs and weaknesses of these capital budgeting modes? Hegen by computing the payback seriod for both plans. (Rnund your antwers to one decitar phace) Plon A (in youm) Plan 8 (in yaars) Requirements 1. Compule the paytsck period, the ARR, and the NPV of these two plans. What at the ufbengts and weaknesses of these captal budgering models? 2. Which expansion puan sheuld ciancoe choose? Why? 3. Estimash Plar A's IRR. How does the IRR compare with the conpany's requized rate of return? The cost of operating a Frisbee company in the first year is $10,000 plus $2 for each Frisbee. Assuming the company sells every Frisbee it makes in the first year for $7, how many Frisbees must the company sell to break even? A. 1,000 B. 1,500 C. 2,000 D. 2,500 E. 3,000 Solve the problem. Show your work. There are 95 students on a field trip and 19 students on each buls. How many buses of students are there on the field trip? ased on the cultural data, which of the following best describes the opinion of the majority of archaeologists regarding the origins of Native Americans? Native American populations originated in Asia. Native American populations are the result of multiple migrations from both Asia and Western Europe. Native Americas only traveled along the Bering Land Bridge route. It is unclear where the Native American populations originated. Many Native American populations are likely the result of boat travel from Polynesia. What led to the decline of Liberalism and to rise of the NewRight? What was Nixon's southern Strategy? Is the expression quadratic 3x+5y-2 to allow remote desktop protocol (rdp) access to directaccess clients, which port below must be opened on the client side firewall? Write the balanced net ionic equation for the reaction that occurs in the following case: {Cr}_{2}({SO}_{4})_{3}({aq})+({NH}_{4})_{2} {CO}_{ Total Cost Concept of Product Pricing Vike Com, Inc, produces and sells celfuar phone. The costs of producing and seling 5,500 units of cellular phones are as follows: Wice Coen deslres a profit equal to a 15% rate of retum on invested assets of $776,870. Assume that Voice Com, Ine, uses the total cost concept of applying the cost-plus approach to product pridng. a. Determine the total costs and the totat cost amount per unit for the production and sale of 5,500 units of cellular phones. Round the cost per unt to two decimg b. Determine the total cost asarkop percentape (rounded to two decimal places) for cellular phones. c. Dotemine the seleng price of cellilar phones, found to the nearest cent. jer phone Consider the following scenario (the given information is the same as in the previous question): Suppose a company has 100 million common shares outstanding, and each share sells for $20. We have estimated that the shares have a beta of 1.2, the riskfree rate is 3%, and the expected market return is 8%. The marginal tax rate for this company is 21%. The company also has $2 billion of bonds outstanding and the yield to maturity on these bonds is 5%. The company has a target capital structure of 60% equity and 40% debt. It does not and will not issue preferred stocks in the future. What is the before-tax cost of debt for this company? A) 4.50% B) 3.95% C) 3.00% D) 5.00% A machine cell uses 196 pounds of a certain material each day. Material is transported in vats that hold 26 pounds each. Cycle time for the vats is about 2.50 hours. The manager has assigned an inefficiency factor of 25 to the cell. The plant operates on an eight-hour day. How many vats will be used? (Round up your answer to the next whole number.)