How many orders are possible to view 6 videos from a stack of 8 videos?

Answers

Answer 1

Answer:

28

Step-by-step explanation:

We know that ,

n C r = n! / ( n - r)! r!

8! / ( 8 - 6)! 6!

8! / 2! × 6!

7 × 8 / 2 × 1

28

Related Questions

(6^2)^4 simplify the expression

Answers

Answer:

36

Step-by-step explanation:

(6^2)^4

(6)^2+4

6^6

36

simplify the expression : (6²)⁴= (36)⁴= 1679616

Or

[tex]{6}^{2 \times 8} = 1679616[/tex]

We are throwing darts on a disk-shaped board of radius 5. We assume that the proposition of the dart is a uniformly chosen point in the disk. The board has a disk-shaped bullseye with radius 1. Suppose that we throw a dart 2000 times at the board. Estimate the probability that we hit the bullseye at least 100 times.

Answers

Answer:

the probability that we hit the bullseye at least 100 times is 0.0113

Step-by-step explanation:

Given the data in the question;

Binomial distribution

We find the probability of hitting the dart on the disk

⇒ Area of small disk / Area of bigger disk

⇒ πR₁² / πR₂²

given that; disk-shaped board of radius R² = 5, disk-shaped bullseye with radius R₁ = 1

so we substitute

⇒ π(1)² / π(5)² = π/π25 = 1/25 = 0.04

Since we have to hit the disk 2000 times, we represent the number of times the smaller disk ( BULLSEYE ) will be hit by X.

so

X ~ Bin( 2000, 0.04 )

n = 2000

p = 0.04

np = 2000 × 0.04 = 80

Using central limit theorem;

X ~ N( np, np( 1 - p ) )

we substitute

X ~ N( 80, 80( 1 - 0.04 ) )

X ~ N( 80, 80( 0.96 ) )

X ~ N( 80, 76.8 )

So, the probability that we hit the bullseye at least 100 times, P( X ≥ 100 ) will be;

we covert to standard normal variable

⇒ P( X ≥  [tex]\frac{100-80}{\sqrt{76.8} }[/tex] )

⇒ P( X ≥ 2.28217 )

From standard normal distribution table

P( X ≥ 2.28217 ) = 0.0113

Therefore, the probability that we hit the bullseye at least 100 times is 0.0113

Can someone help please

Answers

Answer:

-10.5

Step-by-step explanation:

3(7)÷(7+7-2)

21÷(0-2)

21÷ (-2)

-10.5

Why is underfind the square root of a negative number?​

Answers

Answer:

The square root of a negative number is undefined, because anything times itself will give a positive (or zero) result. Note: Zero has only one square root (itself). Zero is considered neither positive nor negative

Answer:

sjshzhshshdhdgdgdhdhdgshshshshshwywhwhw

The proportion of brown M&M's in a milk chocolate packet is approximately 14% (Madison, 2013). Suppose a package of M&M's typically contains 52 M&M's

Answers

Answer:

7 brown M&Ms.

Step-by-step explanation:

This question is not complete, but I will assume that the final question is how many brown M&Ms will be in this package.

0.14 × 52 is our equation.

The answer is 7.28. We cannot have .28 of a brown M&M in a package (unless you count the broken ones) so there will be, on average, 7 brown M&Ms in a package.

(again, the question is incomplete, so this may not be the answer)

How many 10 digits numbers have no two digits the same and do not start with 0 or 1? ​

Answers

Answer:

at least 99

Step-by-step explanation:

each number starting from 2 can be moved 11 times per thing.

Use a linear approximation (or differentials) to estimate the given number. (Round your answer to five decimal places.) 3 217

Answers

Using a linear approximation, the estimated cube root of 217 is  6.00925.

Given that the number is,

The cube root of 217

Now, for the cube root of 217 using a linear approximation, use differentials.

So, the derivative of the function [tex]f(x) = x^{(1/3)[/tex] at a known point.

Taking the derivative of [tex]f(x) = x^{(1/3)[/tex], we get:

[tex]f'(x) = (\dfrac{1}{3} )x^{-2/3[/tex]

Now, we can choose a point near 217 to evaluate the linear approximation.

Let's use x = 216, which is a perfect cube.

Substituting x = 216 into the derivative, we get:

[tex]f'(216) = (\dfrac{1}{3} )(216)^{-2/3[/tex]

            [tex]= 0.00925[/tex]

Next, use the linear approximation formula:

Δy ≈ f'(a)Δx

Since our known point is a = 216 and we want to estimate the cube root of 217,

since 217 - 216 = 1

Hence, Δx = 1

Δy ≈ f'(216)

Δx ≈ 0.00925 × 1

      ≈ 0.00925

Finally, add this linear approximation to the known value at the known point to get our estimate:

Estimated cube root of 217 ;

f(216) + Δy = 6 + 0.00925

                 = 6.00925

Therefore, the estimated cube root of 217 is 6.00925.

To learn more about the linear approximation visit:

https://brainly.com/question/2272411

#SPJ4

Kevin will start with the integers 1, 2, 3 and 4 each used exactly once and written in a row in any order. Then he will find the sum of the adjacent pairs of integers in each row to make a new row, until one integer is left. For example, if he starts with 3, 2, 1, 4, then he takes sums to get 5, 3, 5, followed by 8, 8, and he ends with the final sum 16. Including all of Kevin's possible starting arrangements of the integers 1, 2, 3 and 4, how many possible final sums are there?

Answers

Hello,

there are 5 differents sums:

16,18,20,22,24.

-------------------------------------------------------

Dim i As Integer, j As Integer, k As Integer, l As Integer, u As Integer, v As Integer, nb As Integer

Dim mat(4, 4) As Integer

nb = 0

For i = 1 To 4

   For j = 1 To 4

       If j <> i Then

           For k = 1 To 4

               If k <> j And k <> i Then

                   l = 10 - k - j - i

                   If l > 0 And l < 5 And l <> i And l <> j And l <> k Then

                       mat(1, 1) = i

                       mat(1, 2) = j

                       mat(1, 3) = k

                       mat(1, 4) = l

                       For u = 2 To 4

                           For v = 1 To 4 - u + 1

                               mat(u, v) = mat(u - 1, v) + mat(u - 1, v + 1)

                           Next v

                       Next u

                       'Call visu(mat())

                       nb = nb + 1

                       Print nb,

                       mat(4, 1)

                   End If

               End If

           Next k

       End If

   Next j

Next i

End

Sub visu (m() As Integer)

   Dim i As Integer, j As Integer

   For i = 1 To 4

       For j = 1 To 4 - i + 1

           Print m(i, j);

       Next j

       Print

   Next i

End Sub

The figure below shows two triangles on the coordinate grid: A coordinate grid is shown from positive 6 to negative 6 on the x axis and from positive 6 to negative 6 on the y axis. A triangle ABC is shown with vertex A on ordered pair negative 4, negative 1, vertex B on ordered pair negative 3, negative 1 and vertex C on ordered pair negative 4, negative 4. Another triangle A prime B prime C prime is shown with vertex A prime on ordered pair negative 1, 1, vertex B prime on ordered pair negative 2, 1, and vertex C prime on ordered pair negative 1, 4. What set of transformations is performed on triangle ABC to form triangle A′B′C′? A translation 5 units up, followed by a 270-degree counterclockwise rotation about the origin A 270-degree counterclockwise rotation about the origin, followed by a translation 5 units up A 180-degree counterclockwise rotation about the origin, followed by a translation 5 units to the right A translation 5 units to the right, followed by a 180-degree counterclockwise rotation about the origin

Answers

Option D. The set of transformation that is performed on this triangle (ABCD)' is A translation 5 units to the right, followed by a 180-degree counterclockwise rotation about the origin

How to solve for the transformation

The answer choices have been shown to have all solutions to be rotated around their origin.

To shift the triangle, It has to be done through the connection the points ABC ' to the origin in such a way that the line is extended as we can seen in the diagram.

Read more on reflection here:

https://brainly.com/question/1908648

#SPJ1

We know that the remainder Rn will satisfy |Rn| ⤠bn + 1 = 1 (n + 1)9n + 1. We must make n large enough so that this is less than 0.0001. Rounding to five decimal places, we have b2 = _________ , b3 =_________and b4 =__________

Answers

This question is incomplete, the complete question is;

We know that the remainder R[tex]_n[/tex] will satisfy | R[tex]_n[/tex] | ≤ b[tex]_{ n + 1[/tex] = 1 / ( n + 1 )9[tex]^{ n + 1[/tex].

We must make n large enough so that this is less than 0.0001.

Rounding to five decimal places,

we have b₂ = _________ , b₃ =_________and b₄ =__________

Answer:

b₂ = 0.00617, b = 0.00046 and  b₄ = 0.00004

Step-by-step explanation:

Given the data in the question;

| R[tex]_n[/tex] | ≤ b[tex]_{ n + 1[/tex] = 1 / ( n + 1 )9[tex]^{ n + 1[/tex]

Now,

b[tex]_{ n + 1[/tex] = 1 / ( n + 1 )9[tex]^{ n + 1[/tex]

b₂ = b[tex]_{ 1 + 1[/tex] = 1 / ( 1 + 1 )9[tex]^{ 1 + 1[/tex] = 1 / (2)9² = 1 / 162 = 0.00617   { 5 decimal places }

b₃ = b[tex]_{ 2 + 1[/tex] = 1 / ( 2 + 1 )9[tex]^{ 2 + 1[/tex] = 1 / (3)9³ = 1 / 2187 = 0.00046 { 5 decimal places }

b₄ = b[tex]_{ 3 + 1[/tex] = 1 / ( 3 + 1 )9[tex]^{ 3 + 1[/tex] = 1 / (4)9⁴ = 1 / 19683 = 0.00004 { 5 decimal places }

Therefore, b₂ = 0.00062, b = 0.00046 and  b₄ = 0.00004

i need help with these questions. anyone down to help me ?please

Answers

9514 1404 393

Answer:

A: less than 2 hoursB: 2 to 5 hoursC: more than 5 hours

Step-by-step explanation:

The attached graph shows the various company costs for x number of hours. The graph nearest the x-axis represents the lowest cost.

We can see that cost is lowest using Company A for 2 hours or less, and Company C for 5 hours or more. For times between those, Company B has the lowest charges.

Of course, the equation for charges in each case is the sum of the service fee and the product of hourly charge and number of hours (x).

__

I find the graphing calculator to be the most efficient tool for solving these. The alternative is to compare the equations pairwise to see which gives lower rates. With a little practice, you learn that the "break even hours" will be the difference in service fees divided by the difference in hourly cost.

For example A will cost the same as B when the $20 service fee and the $10/hour cost difference are the same: for 2 hours. A and C will cost the same when the $45 service fee and the $15/hour cost difference are the same, after 3 hours. B and C will cost the same when the $25 difference in service fees and the $5/hour cost difference are the same, after 5 hours.

So B is cheaper above 2 hours, and C is cheaper than that above 5 hours. With no service fee, A is cheaper for small numbers of hours (<2).

what is the value of pie​

Answers

Answer:

3.142

Step-by-step explanation:

Succinctly, pi which is written as the Greek letter for p, or π is the ratio of the circumference of any circle to the diameter of that circle. Regardless of the circle's size, this ratio will always equal pi. In decimal form, the value of pi is approximately 3.142.

Can someone help me out?

Answers

Answer:

Terms:

-5x4-x-1

Like Terms:

-5x and -x4 and -1

Coefficients:

The coefficient of -5x is -5.The coefficient of -x is -1.

Constants:

4-1

You simplify the expression by combining like terms:

-5x + 4 - x - 1 = -6x + 5

(7b - 4) + (-2b + a + 1) = 7b - 4 - 2b + a + 1 = 5b + a - 3

Find the measure of XY

Answers

Answer:

70

Step-by-step explanation:

the answer is 35*2=70

Answer:

70

yhsdhjbfjdfjdfhdfh

Jonathon looked at the picture frame below and computed the following sum 8 3/4 +{-4}. What value did he find

Answers:

x
2y
y
2 x

Answers

Answer:

he found y value

Step-by-step explanation:

y value would be 8 3/4 + (-4) which is equivalent to 8 3/4 - 4 = 4 3/4

Find how long it takes a person to drive 90 miles on a highway if she merges onto a highway at 3p.m. and drives nonstop with her cruise control set on 40 mph.
How long does is take a person to drive 90 miles?
(type an integer or a decimal)

Answers

Answer:

2.25 or 2 hours 15 mins

Step-by-step explanation:

90/40 = 2.25

Consider the quadratic function y = 0.3 (x-4)2 - 2.5
Determine the axis of symmetry, x =

Answers

Answer:

[tex]x=4[/tex]

Step-by-step explanation:

We have the quadratic function:

[tex]\displaystyle y=0.3(x-4)^2-2.5[/tex]

And we want to determine its axis of symmetry.

Notice that this is in vertex form:

[tex]y=a(x-h)^2+k[/tex]

Where (h, k) is the vertex of the parabola.

From our function, we can see that h = 4 and k = -2.5. Hence, our vertex is the point (4, -2.5).

The axis of symmetry is equivalent to the x-coordinate of the vertex.

The x-coordinate of the vertex is 4.

Therefore, the axis of symmetry is x = 4.

number of bald eagles in a country a discrete random​ variable, a continuous random​ variable, or not a random​ variable?

Answers

Answer:

Discrete random variable.

Step-by-step explanation:

Discrete variable:

Countable numbers(0,1,2,3,...)

Continuous variable:

Can assume decimal values, such as 0.5, 2.5,...

Number of bald eagles:

Number of bald eagles is a countable value, either there a 0, 100, 1000,... so it is a discrete random variable.

Answer:

Discrete random variable.

Step-by-step explanation:

verify that whether -2 and 3 are zeroes of the polynomial x^2-x=6
PLEASE HELP​

Answers

Answer:

Both give remainder 0 for the polynomial

Step-by-step explanation:

p(-2) = (-2)² - (-2) - 6

= 6 - 6 = 0

p(3) = (3)² - 3 - 6

= 9 - 9 = 0

Whole numbers are closed under addition because the sum of two whole numbers is always a whole number. Explain how the process of checking polynomial division supports the fact that polynomials are closed under multiplication and addition.

Answers

Answer:

Sample Answer: If there is no remainder, then the dividend is equal to the quotient times the divisor.

The quotient and divisor are both polynomials, and their product, the dividend, is a polynomial.

If there is a remainder, then it gets added on to the product of the quotient and the divisor.

The sum of the remainder and the product of the quotient and divisor is the dividend, which is a polynomial.

Step-by-step explanation:

for sure enjoy!

Answer:

If there is no remainder, then the dividend is equal to the quotient times the divisor.

The quotient and divisor are both polynomials, and their product, the dividend, is a polynomial.

If there is a remainder, then it gets added on to the product of the quotient and the divisor.

The sum of the remainder and the product of the quotient and divisor is the dividend, which is a polynomial.

Simplify.
Rewrite the expression in the form 6^n6
n
6, start superscript, n, end superscript.
\dfrac{6^{4}}{6}=
6
6
4

Answers

Answer:

6^3

6 to the third power

or 3x3x3

Step-by-step explanation:

The solution of the expression 6⁻⁴.6⁶ will be 6².

What is an expression?

Expression in maths is defined as the collection of numbers variables and functions by using signs like addition, subtraction, multiplication, and division.

Numbers (constants), variables, operations, functions, brackets, punctuation, and grouping can all be represented by mathematical symbols, which can also be used to indicate the logical syntax's order of operations and other features.

Given that the expression is 6⁻⁴.6⁶. The expression will be solved as below:-

6⁻⁴.6⁶ = 6⁻⁴⁺⁶

Use the exponent property when the bases are the same then the powers will be added.

6⁻⁴.6⁶ = 6²

Therefore, the solution of the expression 6⁻⁴.6⁶ will be 6².

The complete question is to simplify the expression 6⁻⁴.6⁶.

To know more about an expression follow

https://brainly.com/question/8844911

#SPJ2

The ratio of the number of cherry tomatoes in a tossed salad to people served is 7:15. If Waldo wants to serve 105 people, how many cherry tomatoes will Waldo use

Answers

49 tomatoes bc 7/15 is equivalent to 49/105

Simplify the ratio.
2.25 to 0.5

Answers

Answer:

9:2

Step-by-step explanation:

70. If set A consists of (3, 5, 7, 9) and set B consists of (1, 2, 3, 5, 8, 13), what is the average of the union of set A and set B?

A) 6
B) 3
C) 48
D) 56

⚠️will give brainliest to the best answer

Answers

Step-by-step explanation:

the answer would be 6. brrr

A) 6

{1,2,3,5,7,8,9,13}

The average is going to be 6.

Suppose 46% of politicians are lawyers. If a random sample of size 662 is selected, what is the probability that the proportion of politicians who are lawyers will differ from the total politicians proportion by less than 4%

Answers

Answer:

0.9606 = 96.06% probability that the proportion of politicians who are lawyers will differ from the total politicians proportion by less than 4%

Step-by-step explanation:

To solve this question, we need to understand the normal probability distribution and the central limit theorem.

Normal Probability Distribution

Problems of normal distributions can be solved using the z-score formula.

In a set with mean [tex]\mu[/tex] and standard deviation [tex]\sigma[/tex], the z-score of a measure X is given by:

[tex]Z = \frac{X - \mu}{\sigma}[/tex]

The Z-score measures how many standard deviations the measure is from the mean. After finding the Z-score, we look at the z-score table and find the p-value associated with this z-score. This p-value is the probability that the value of the measure is smaller than X, that is, the percentile of X. Subtracting 1 by the p-value, we get the probability that the value of the measure is greater than X.

Central Limit Theorem

The Central Limit Theorem establishes that, for a normally distributed random variable X, with mean [tex]\mu[/tex] and standard deviation [tex]\sigma[/tex], the sampling distribution of the sample means with size n can be approximated to a normal distribution with mean [tex]\mu[/tex] and standard deviation [tex]s = \frac{\sigma}{\sqrt{n}}[/tex].

For a skewed variable, the Central Limit Theorem can also be applied, as long as n is at least 30.

For a proportion p in a sample of size n, the sampling distribution of the sample proportion will be approximately normal with mean [tex]\mu = p[/tex] and standard deviation [tex]s = \sqrt{\frac{p(1-p)}{n}}[/tex]

Suppose 46% of politicians are lawyers.

This means that [tex]p = 0.46[/tex]

Sample of size 662

This means that [tex]n = 662[/tex]

Mean and standard deviation:

[tex]\mu = p = 0.46[/tex]

[tex]s = \sqrt{\frac{p(1-p)}{n}} = \sqrt{\frac{0.46*0.54}{662}} = 0.0194[/tex]

What is the probability that the proportion of politicians who are lawyers will differ from the total politicians proportion by less than 4%?

p-value of Z when X = 0.46 + 0.04 = 0.5 subtracted by the p-value of Z when X = 0.46 - 0.04 = 0.42. So

X = 0.5

[tex]Z = \frac{X - \mu}{\sigma}[/tex]

By the Central Limit Theorem

[tex]Z = \frac{X - \mu}{s}[/tex]

[tex]Z = \frac{0.5 - 0.46}{0.0194}[/tex]

[tex]Z = 2.06[/tex]

[tex]Z = 2.06[/tex] has a p-value of 0.9803

X = 0.42

[tex]Z = \frac{X - \mu}{s}[/tex]

[tex]Z = \frac{0.42 - 0.46}{0.0194}[/tex]

[tex]Z = -2.06[/tex]

[tex]Z = -2.06[/tex] has a p-value of 0.0197

0.9803 - 0.0197 = 0.9606

0.9606 = 96.06% probability that the proportion of politicians who are lawyers will differ from the total politicians proportion by less than 4%

How to solve this problem what do I do

Answers

Answer:  P + 6 - s

=================================================

Explanation:

We undo the "minus 6" by adding 6 to both sides.

Also, we undo the "+s" by subtracting s from both sides

-----------

So we have these steps

P = r+s-6

P+6 = r+s-6+6 .... adding 6 to both sides

P+6 = r+s

r+s = P+6

r+s-s = P+6-s ..... subtracting s from both sides

r = P + 6 - s

Answer:

P+6-s=r

Step-by-step explanation:

Hi there!

We are given the equation P=r+s-6 and we need to solve for r

To do that, we need to isolate r onto one side, and have everything else on the other.

Here is the equation:

P=r+s-6

start by adding 6 to both sides to clear it from the right side

P+6=r+s

now subtract s from both sides to clear it from the right side

P+6-s=r

now everything that isn't r is on the left side, and r is by itself on the right side. P+6-s=r is the answer.

Hope this helps!

Here is the setup for a non-traditional casino game: You draw a card from a well shuffled full deck and if the card is a king you win $100. The game costs $2 to play and you decide to play the game until you win the $100. Each time you draw a card you pay $2, and if the card is not a king, the card is put back in the deck, and the deck is reshuffled. How much money should you expect to spend on this game?

Answers

Answer:

$26

4/52 = 1/13..  the king will appear one in 13 tries... 13 tries is $26

Step-by-step explanation:

You should expect to spend $26 to win $100 playing this game.

What is probability?

It is the chance of an event to occur from a total number of outcomes.

The formula for probability is given as:

Probability = Number of required events / Total number of outcomes.

Example:

The probability of getting a head in tossing a coin.

P(H) = 1/2

We have,

To calculate the expected cost of playing this game until you win $100, we need to determine the probability of drawing a king on any given turn, as well as the number of times you are expected to play the game before you win.

So,

The probability of drawing a king on any given turn is 4/52, or 1/13 since there are 4 kings in a standard deck of 52 cards.

To determine the number of times you are expected to play the game before you win, we can use the geometric distribution, which models the number of trials it takes to achieve success in a sequence of independent trials, where the probability of success remains constant across trials.

The probability of winning on any given trial is 1/13, and the probability of losing is 12/13.

The expected number of trials until the first success (drawing a king) is:

= 1 / (1/13) = 13

This means that on average, you can expect to play the game 13 times before drawing a king and winning the $100 prize.

Now,

Since each game costs $2 to play, the total cost of playing the game 13 times is:

13 x $2 = $26

Therefore,

You should expect to spend $26 to win $100 playing this game.

Learn more about probability here:

https://brainly.com/question/14099682

#SPJ2

Unit sales for new product ABC have varied in the first seven months of this year as follows: Month Jan Feb Mar Apr May Jun Jul Unit Sales 148 329 491 167 228 285 441 What is the (population) standard deviation of the data

Answers

Answer:

[tex]\sigma = 121.53[/tex]

Step-by-step explanation:

Required

The population standard deviation

First, calculate the population mean

[tex]\mu = \frac{\sum x}{n}[/tex]

This gives:

[tex]\mu = \frac{148+ 329+ 491 +167+ 228+285+ 441}{7}[/tex]

[tex]\mu = \frac{2089}{7}[/tex]

[tex]\mu = 298.43[/tex]

The population standard deviation is:

[tex]\sigma = \sqrt{\frac{\sum(x - \bar x)^2}{n}}[/tex]

So, we have:

[tex]\sigma = \sqrt{\frac{(148 - 298.43)^2 + ..........+ (441- 298.43)^2}{7}}[/tex]

[tex]\sigma = \sqrt{\frac{103387.7143}{7}}[/tex]

[tex]\sigma = \sqrt{14769.6734714}[/tex]

[tex]\sigma = 121.53[/tex]

is this right please answer ill mark!!

Answers

Answer:

yeah u r correct..

Step-by-step explanation:

hope it helps.stay safe healthy and happy......

Answer:

yes

Step-by-step explanation:

cos=adjacent over hypotenouse

I will mark you brainliest if you provide evidence you know what your doing

Work out the problem and make the answer clear

Answers

Option C

SOLUTION:

We need to find the value of B - CF

First find the value CF:

[tex]CF=\left[\begin{array}{ccc}12&0&1.5\\1&-6&7\\\end{array}\right] \left[\begin{array}{ccc}-2&0\\0&8\\2&1\end{array}\right][/tex]

[tex]CF=\left[\begin{array}{ccc}12(-2)+0 *0+1.5*2&12*0+0.8+1.5*1\\1*(-2)+(-6)*0+7.2&1*0+(-6)*8+7.1\\\end{array}\right][/tex]

[tex]CF=\left[\begin{array}{ccc}-21&1.5\\12&-41\\\end{array}\right][/tex]

Now find value of B - CF:

[tex]B-CF=\left[\begin{array}{ccc}2&8\\6&3\\\end{array}\right] -\left[\begin{array}{ccc}-21&1.5\\12&-41\\\end{array}\right][/tex]

[tex]B-CF=\left[\begin{array}{ccc}23&6.5\\-6&44\\\end{array}\right][/tex]

∴ the value of B - CF is [tex]\left[\begin{array}{ccc}23&6.5\\-6&44\\\end{array}\right][/tex]

I hope this helps....

Other Questions
(sec theta - tan theta) Hamell Company has gathered the following data on a proposed investment project: Discount rate 8% Life of the project 8 years Initial investment $330,000 Annual cash inflows 54,450 Salvage value 0 Assume that excess of incremental revenues over the incremental expenses (including depreciation) equal the annual cash inflows. The simple rate of return on the proposed investment is closest to: (Round your answer to 1 decimal place.) What is the main idea of Animal Farm Chapter 1 A short futures contract on a non-dividend paying stock was entered some time ago. It now has 6 months to maturity. The risk-free rate of interest is 10% per year. The stock is currently trading at $25/share and the delivery price is $24/share. How much is your position worth today (ignore marking to market costs) A committee that consists of five members are to be chosen from 6 boys and 5 girls. Find the number of different committees that can be formed if the number of boys is more than the number of girls "English is still relevant lingua franca. Discuss and support your view with examples."can give me some idea?just give me the point?? Peter owned a juice shop. He sold a cup of lemon juice for $1.25 and a cup of apple juice for $2.50. If Peter sold a total of 155 cups of juice and collected a total of $256 approximately, how many cups of each type did he sell? Pelis de terror/misterio que recomienden?'????''' If P=36 inches, find x and find the area In a random sample of 26 residents of the state of Montana, the mean waste recycled per person per day was 2.8 pounds with a standard deviation of 0.23 pounds. Determine the 80% confidence interval for the mean waste recycled per person per day for the population of Montana. Assume the population is approximately normal. Step 1 of 2: Find the critical value that should be used in constructing the confidence interval. Round your answer to three decimal places. C Corporation is investigating automating a process by purchasing a machine for $803,700 that would have a 9 year useful life and no salvage value. By automating the process, the company would save $138,500 per year in cash operating costs. The new machine would replace some old equipment that would be sold for scrap now, yielding $22,300. The annual depreciation on the new machine would be $89,300. The simple rate of return on the investment is closest to (Ignore income taxes.): What is the correct equation for the y axis of object B? Write a letter to your uncle in America, informing him of your family and your community 3-6 Adnde van? Following the model, write complete sentences using the verb ir.OJO! Remember: a + el = al.MODELO: mi hermano / museoMi hermano va al museo.1. ustedes / el supermercado2. tu pap y tu mam / la tienda3. t y tu novio(a) / el restaurante4. yo / el partido5. nosotros / el gimnasio6. usted / la plaza7. t / la iglesia3-71Qu planes tenemos? Rewrite the sentences to describe your plans for the nearfuture. Use the ir a + infinitive construction.MODELO: Practico ftbol a las ocho.Voy a practicar ftbol a las ocho.1. Marta y Miguel Jos esquan en las montaas.2. Vosotros tomis el sol en junio.3. Tomo un caf por la tarde.4. Mis primos andan en bicicleta los fines de semana.5. Eduardo corre en el parque.6. Sacas fotos en la fiesta.7.Usted baila en una discoteca.8. Nosotros vamos de compras el sbado. When Chief Justice Earl Warren stated, "A sense of inferiority affects the motivation of a child to learn," what was he essentially stating? A. Children often struggle with wanting to study. B. Learning is difficult if a child is not inspired. C. Low self-esteem can have a negative impact on grades. D. Students who feel inferior often spend more time alone. Which of the following terms is best described as the point halfway betweenthe endpoints of a line segment?O A. MidpointO B. Ordered pairO C. CoordinateO D. Vertex Which details develop the central idea that the Grimms collected stories to preserve culture? Check all that apply. What is the image point of (1,-2) after a translation right 4 units and down 4units Which excerpt most accurately shows why Douglass wrote thisnarrative? Question 3A 70kg patient has approximately 8 pints of blood. The patient donates 470mL of blood.Approximately what fraction of his body's blood is this? (one pint = 568mL)