Can someone help me I’m doing a khan academy and need help ASAP marking brainliest

Can Someone Help Me Im Doing A Khan Academy And Need Help ASAP Marking Brainliest

Answers

Answer 1

Answer:

x = 180 - 89 = 91

Step-by-step explanation:


Related Questions

Explain how to use the graph to write an equation to model the gum’s height. Be sure to identify the pattern of the points in your explanation, and identify the values of a and k.

Answers

Answer:

The pattern is min-zero-max-zero-min, which is the pattern for a cosine function of the form y = acos(x) + k, but is reflected over the x-axis (so a < 0).

The amplitude is |a|, so a = –1 and |a| = 1.

The midline is exactly between the max and the min, y = (6 + 8)/2 = 7, so k = 7.

The equation is y = –cos(x) + 7.

Step-by-step explanation:

answer on edge 2022

The given graph equation of the function is; y = -1cos(x) + 7 where a = -1 and k = 7

How to plot the graph of cosine functions?

The given points to be plotted are;

(0,6), (π/2,7), (π, 8), (3π/2, 7) and (2π, 6a)

Now, If we graph these points, it is noticed that the function is a cosine function. Since the function does not pass through the origin, it means that it will have a y-intercept equal to 6.

The general equation for a cosine function is;

y = acos(x) + k

The midline is exactly between the maximum and the minimum point and so it is;

y = (6 + 8)/2

y = 7, so k = 7.

a is the amplitude and since it is reflected over the x-axis, then it means that a = -1. Thus;

y = -1cos(x) + 7

Read more about cosine functions at; https://brainly.com/question/13158551

What are the 3 angle bisectors of a triangle intersect?.

Answers

The three angle bisector of a triangle intersect at a single point that point of concurrency of the angle of bisectors is called the incenter.

Given:

the 3 angle bisectors of a triangle intersect.

when three angle bisector of a triangle intersect then that point of concurrency is called incenter.

Incenter:

The incenter of a triangle is the intersection point of all the three interior angle bisectors of the triangle. In other words, it can be defined as the point where the internal angle bisectors of the triangle cross. This point will be equidistant from the sides of a triangle, as the central axis’s junction point is the center point of the triangle’s inscribed circle.

Incenter formula:

= (ax1+bx2+x3 / a+b+c  , ay1+by2+y3 / a+b+c).

Learn more about the triangle here:

https://brainly.com/question/2773823

#SPJ4

What are the 3 angle bisectors of a triangle intersect?.

2 triangular prisms and a cube. The cube is 2 by 2. The triangular prisms have rectangular sides of 3 by 5, 3 by 3, and 3 by 4. The triangular sides have a base of 3 and height of 4.
To find the surface area of the figure shown, Mia found the surface area of the two triangular prisms and the rectangular prism. From this, Mia subtracted 6 ft2. Did Mia make an error?
Mia should have subtracted 16 square feet.
Mia needs to subtract another 6 square feet.
Mia must calculate each triangle separately.
There is no error—Mia is correct.

Answers

Answer:B. Mia needs to subtract another 6 square feet.

Step-by-step explanation:

Answer:

yeah the dude above me is right

Step-by-step explanation:

b r u h moment compilation #27

A quadratic function y = f(x) is plotted on a graph and the vertex of the resulting
parabola is ( 3, -3 ). What is the vertex of the function defined as g(x) = -f (x – 3)

Answers

Answer:

The vertex of g(x) is (6,3).

Step-by-step explanation:

Quadratic Function

The vertex form of the quadratic function has the following equation:

\(y=a(x-h)^2+k\)

Where (h, k) is the vertex of the parabola that results when plotting the function, and a is the leading coefficient.

We know a quadratic function y=f(x) is represented by a parabola whose vertex is at (3,-3). Substituting in the equation:

\(y=a(x-3)^2-3\)

The function g(x) is defined as:

\(g(x)=-f(x-3)\)

Substituting f(x):

\(g(x)=-[a(x-3-3)^2-3]\)

Operating:

\(g(x)=-a(x-6)^2+3\)

This function is represented by a parabola with its vertex at (6,3).

The vertex of g(x) is (6,3).

Taylor bought a watch onsale for 60% off the originalprice, and another 10% off thediscounted price. If the watchoriginally cost $82, what wasthe final sale price?

Answers

Original Cost - $82

First part: Apply the 60% off discount

Convert first the 60% into decimal form

60% ÷ 100% = 0.6

Multiply it to the original cost to determine the discount

$82 ˣ 0.6 = $49.2

Subtract the discount to the original price, to determine the discounted price.

$82 - $49.2 = $32.8

Second part:

The discounted price is now $32.8 for which we will apply another 10% discount.

Again, convert 10% into decimal

10% ÷ 100% = 0.1

Multiply it to the discounted price, to determine the second discount.

$32.8 ˣ 0.1 = $3.28

Subtract the discount to the already discounted price.

$32.8 - $3.28 = $29.52

Therefore, the final sale price of the watch is at $29.52.

Which three angle measures can be used to make AABC?
A)
28°
B)
29°
C)
58°
D)
89°
E)
94°

Which three angle measures can be used to make AABC?A)28B)29C)58D)89E)94

Answers

answer choices a, c, and e is correct.

28 + 58 + 94 = 180

What would be the result of executing the following code?
int[] x = {0, 1, 2, 3, 4, 5};
Group of answer choices
A-An array of 6 values, all initialized to 0 and referenced by the variable x will be created.
B-An array of 6 values, ranging from 0 through 5 and referenced by the variable x will be created.
C-The variable x will contain the values 0 through 5.
D-A compiler error will occur.

Answers

The result of executing the given code is (B) an array of 6 values, ranging from 0 through 5, will be created and referenced by the variable x.

The code `int[] x = {0, 1, 2, 3, 4, 5};` is initializing an array of integers named `x`. The values inside the curly braces represent the elements of the array. In this case, the values are 0, 1, 2, 3, 4, and 5.

Option (A) is incorrect because the values in the array are not all initialized to 0. Instead, each value corresponds to its respective position in the array.

Option (C) is also incorrect because the variable `x` does not directly store the values 0 through 5. Instead, `x` is a reference to the array that contains those values.

Option (D) is not applicable as the code provided is syntactically correct and will not result in a compiler error.

Therefore, the correct answer is (B) - an array of 6 values, ranging from 0 through 5, will be created and referenced by the variable `x`.

Learn more about array here:

https://brainly.com/question/13261246

#SPJ11

What is the measure of 40 angle A’B’C’?

Answers

Answer:

angle ABC is a straight angle or, 180°

a major disadvantage of correlations is that they cannot make a(n) blank statement. multiple choice question.

Answers

A major disadvantage of correlations is that they cannot make a cause-and-effect statement.

What are correlations?

Correlations are statistical measures that describe the size and direction of a relationship between variables.

Correlations are expressed as numbers. Correlations establish that relationships exist but do not explain if the change in one variable is caused by the change in another variable's value.

The disadvantages of correlations include:

There are no causes and effects.Results can find no inference.The strength of the relationship is not explained.There is the possibility of a confounding factor.

Thus, a major disadvantage of correlations is that they cannot make a cause-and-effect statement.

Learn more about correlations at https://brainly.com/question/5483638

#SPJ1

find the codomain of F without using graphf(x) = (x+3) / (x-1)

Answers

We are given the following function:

\(f(x)=\frac{x+3}{x-1}\)

We are asked to determine the codomain of the function. We need to have into account that the range and the codomain are two different but similar concepts.

The range is the values that he functions outputs and the codomain is the set of the possible values of the function.

In this case, we have a function that takes real values and outputs real values, therefore, the codomain is the set of the real numbers, this is written as:

\(\text{Codomain=}\mleft\lbrace\R\mright\rbrace\)

Select all that apply.

Which of the following are proportions?

Select all that apply.Which of the following are proportions?

Answers

Answer:

A, C and D

Step-by-step explanation:

both A, C and D are both porportions because they both equal the other fraction.

Answer:

1, 3, 4

Step-by-step explanation:

i had this on my test- im doing it rn.

The triangles below are congruent and their corresponding parts are marked.

The triangles below are congruent and their corresponding parts are marked.

Answers

All the correct values for triangles are,

∠ A = ∠ Z

∠ B = ∠ Y

∠ C = ∠X

AB ≅ XZ

AC ≅ ZY

CB ≅ XY

What is mean by Triangle?

A triangle is a three sided polygon, which has three vertices and three angles which has the sum 180 degrees.

Given that;

The triangles below are congruent and their corresponding parts are marked.

Hence, By deifnition of similarity,

Their corresponding sides and angles are equal.

Hence, We get;

All the correct values for triangles are,

∠ A = ∠ Z

∠ B = ∠ Y

∠ C = ∠X

AB ≅ XZ

AC ≅ ZY

CB ≅ XY

Learn more about the triangle visit;

brainly.com/question/1058720

#SPJ1

'hot pizza' is offering a 20% discount on all its pizzas ali orders a pizza for the reduced price 5.60 what was the original rice of the pizza

Answers

Answer:

7.00

Step-by-step explanation:

Given that:

Price after reduction  = 5.60

so, 80% = 5.60

we have to calculate 1005.

To do so, find 10% and multiply it by 10.

80% = 5.60

10% = 5.60/8 = 0.70

So, 100% = 7.00

Hope this helps.

Good Luck.

Please Mark Brainiest

2. [-/1 Points] DETAILS LARCALC11 14.5.004. Find the area of the surface given by z = f(x, y) that lies above the region R. f(x, y) = 11 + 8x-3y R: square with vertices (0, 0), (4, 0), (0, 4), (4,4)

Answers

There is no specific value of ‘a’ that will determine the absolute maximum of g(x) within the interval (0,5). The maximum will occur either at x = 0 or x = 5, depending on the specific value of ‘a’ chosen.

To find the value of ‘a’ for which the function g(x) = x * e^(a-1) attains its absolute maximum on the interval (0,5), we need to analyze the behavior of the function and determine the critical points.

First, let’s take the derivative of g(x) with respect to x:

G’(x) = e^(a-1) + x * e^(a-1)

To find the critical points, we set g’(x) equal to zero and solve for x:

E^(a-1) + x * e^(a-1) = 0

Factoring out e^(a-1), we have:

E^(a-1) * (1 + x) = 0

Since e^(a-1) is always positive, the only way for the expression to be zero is when (1 + x) = 0. Solving for x, we find:

X = -1

However, the interval given is (0,5), and -1 is outside that interval. Therefore, there are no critical points within the interval (0,5).

This means that the function g(x) = x * e^(a-1) does not have any maximum or minimum points within the interval. Instead, its behavior depends on the value of ‘a’. The absolute maximum will occur at one of the endpoints of the interval, either at x = 0 or x = 5.

Learn more about derivative here:

https://brainly.com/question/29144258

#SPJ11

The function f is defined by the following rule
f(x)=2x-1
Complete the function table

The function f is defined by the following rulef(x)=2x-1Complete the function table

Answers

The value of the function at x = -3, -2, 0, 1, and 5 will be -7, -5, -1, 1, and 9, respectively.

What is the value of the expression?

When the relevant factors and natural laws of a mathematical model are given values, the outcome of the calculation it describes is the expression's outcome.

The function is given below.

f(x) = 2x - 1

The value of the function at x = - 3 will be

f(-3) = 2(-3) - 1

f(-3) = - 6 - 1

f(-3) = - 7

The value of the function at x = - 2 will be

f(-2) = 2(-2) - 1

f(-2) = - 4 - 1

f(-2) = - 5

The value of the function at x = 0 will be

f(0) = 2(0) - 1

f(0) = 0 - 1

f(0) = - 1

The value of the function at x = 1 will be

f(1) = 2(1) - 1

f(1) = 2 - 1

f(1) = 1

The value of the function at x = 5 will be

f(5) = 2(5) - 1

f(5) = 10 - 1

f(5) = 9

The value of the function at x = -3, -2, 0, 1, and 5 will be -7, -5, -1, 1, and 9, respectively.

More about the value of expression link is given below.

https://brainly.com/question/23671908

#SPJ1

Given WZ bisects and angle XWY find the two ones not found question 30
WILL GIVE BRAINLIEST

Given WZ bisects and angle XWY find the two ones not found question 30WILL GIVE BRAINLIEST

Answers

Answer:

30). 68°

31). 35.5°

Step-by-step explanation:

Question (30).

If WZ is the angle bisector of ∠XWY.

∠XWZ ≅ ∠YWZ

Therefore, measure of both the angles will be equal.

m∠XWZ ≅ m∠YWZ = 68°

and m∠XWY = 2(68°) = 136°

Question (31)

If WZ is an angle bisector of ∠XWY,

∠XWZ ≅ ∠YWZ

Therefore,

m∠XWZ = m∠YWZ = \(\frac{1}{2}(m\angle XWY)\)

m∠XWZ = m∠YWZ = \(\frac{1}{2}(71)\)

m∠XWZ = m∠YWZ = 35.5°

What is the volume of this triangular prism?


A. 576 ft3
B. 288 ft3
C. 34 ft3
D. 29 ft3

What is the volume of this triangular prism?A. 576 ft3 B. 288 ft3 C. 34 ft3 D. 29 ft3

Answers

Answer:

576

Step-by-step explanation:

4x16=64

64x9=576

Which of the following indicates the greatest weight? f 0.25 tons g 9,000 ounces h 0.5 tons j 600 pounds

Answers

The greatest weight is weight H that weighs 0.5 tons.

What is the greatest weight?

The given weights have different measurements. In order to determine the greatest weight, convert all the weights to ounces.

Weight F to tons:

1 ton = 32,000 ounces

0.25 x 32,000 = 8000 ounces

Weight H to ounces:

1 ton = 32,000 ounces

0.5 x 32,000 = 16,000 ounces

Weight J to ounces :

1 pound = 16 ounces

600 x 16 = 9,600 ounces

To learn how to convert units, please check: https://brainly.com/question/25993533

#SPJ1

Determine whether the sequence converges or diverges. If it converges, find the limit. (If an answer does not exist, enter DNE.) a_n = sin (4n)/2n + squareroot n lim n rightarrow a_n = DNE

Answers

The sequence aₙ = sin (4n)/2n + √n diverges because it does not have a limit that can be expressed in a finite manner.

A sequence is a set of numbers that follow a certain pattern. The behavior of the sequence as n approaches infinity determines whether the sequence converges or diverges.

In this case, the sequence

=> aₙ = sin (4n)/2n + √n.

To determine whether the sequence converges or diverges, we need to find the limit as n approaches infinity.

However, in this case, the limit as n approaches infinity is DNE, meaning it does not exist. This means that the sequence diverges, as it does not approach a limit as n approaches infinity.

In this case, the sequence

=> aₙ = sin (4n)/2n + √n

converges to DNE, meaning that it does not have a limit that can be expressed in a finite manner.

To know more about converge here.

https://brainly.com/question/15415793

#SPJ4

what is the value of each of these prefix expressions? * 3 3↑3 3 3 5

Answers

Answer:

big bodie built

Step-by-step explanation:

i used to be dusty

Based on the calculations, the value of the given prefix expression is equal to 2205.

What is preorder traversal?

The preorder traversal of a tree (T) are typically used in discrete mathematics to determine the value of a prefix expression on a specific expression tree.

For the preorder traversal of this tree (T), we would start from the right most expression:

Prefix expression = * + 3 + 3 ↑ 3 + 3 3 3

Prefix expression = * + 3 + 3 ↑ 3 6 3

Prefix expression = * + 3 + 3  3⁶  3

Prefix expression = * + 3 3 729 3

Prefix expression = * + 3 732 3

Prefix expression = * 735 3   ⇒ 735 × 3

Value = 2205.

Read more on preorder traversal here: https://brainly.com/question/12947940

#SPJ11

Complete Question:

Given the following prefix expression:

* + 3 + 3 ↑ 3 + 3 3 3

What is the value of the prefix expression?

According to government data, 22 percent of children in the United States under the age of 6 years live in households with incomes that are classified at a particular income level. A simple random sample of 300 children in the United States under the age of 6 years was selected for a study of learning in early childhood. If the government data are correct, which of the following best approximates the probability that at least 27 percent of the children in the sample live in households that are classified at the particular income level

Answers

The best equation that approximates the probability that at least 27 percent of the children in the sample live in households that are classified at a particular income level is \(p(z > \frac{0.27-0.22}{\frac{\sqrt{0.22*0.78} }{300} })\) .

What is Probability Sampling?Probability sampling is the process of selecting a sample from a population when the selection is based on the randomization principle, often known as chance or random selection. In general, probability sampling is more difficult, time-consuming, and expensive than non-probability sampling. However, since units from the population are chosen at random and the selection probability for each unit can be determined, accurate estimates can be generated and statistical conclusions about the population may be drawn.

Given:

Probability of children who live in households with incomes that are classified at a particular income level,p = 22/100 = 0.22

Number of children in a simple random sample,n = 300

Probability of children who do not live in households with incomes that are classified at a particular income level, q = 1-p = 0.78

The probability of children in the sample living in households that are classified at a particular income level,p₁ = 27/100 = 0.27

Now, we know

\(p(z > \frac{p_{1} -p}{\frac{\sqrt{p.q} }{n} } )\)

So,

\(p(z > \frac{0.27-0.22}{\frac{\sqrt{0.22*0.78} }{300} })\)

To know more about Probability sampling visit:

https://brainly.com/question/15411001

#SPJ4

(Q2) The set of line segments _____ meet the requirements to form a triangle.8 cm4 cm3 cm

Answers

To form a triangle, the set of line segments must satisfy the triangle inequality theorem, which states that the sum of the lengths of any two sides of a triangle must be greater than the length of the third side. Therefore, we need to check if the given line segments 8 cm, 4 cm, and 3 cm meet this requirement.

We can start by checking if the sum of the two smaller sides (3 cm and 4 cm) is greater than the largest side (8 cm). 3 cm + 4 cm = 7 cm, which is less than 8 cm. Therefore, these three line segments cannot form a triangle.

In general, for a set of line segments to form a triangle, the largest side must be smaller than the sum of the other two sides. In this case, the line segment of 8 cm is too long compared to the other two sides, which makes it impossible to form a triangle.

In conclusion, there are no line segments that meet the requirements to form a triangle with lengths of 8 cm, 4 cm, and 3 cm.

learn more about the inequality theorem here: brainly.com/question/1163433

#SPJ11

c + 9 = -15. No se cual es la respuesta.

c + 9 = -15. No se cual es la respuesta.

Answers

The answer would be C+9=-15
C-9=-9
C=-24

can someone help?!! i’ll give brainlist if it’s right!

can someone help?!! ill give brainlist if its right!

Answers

Answer:

X >  -3, 0.28, 4

Step-by-step explanation:

x - 7 >  -12 - To solve add 7 to both sides

x > -5 Which means every number GREATER but not EQUAL to 5 will count as a solution to the equation, therefore 5 is not a correct answer. -3 is greater then -5, and any positive number is greater then any negative number.

Therefore the Correct Answer is : -3. 0.28, 4

A shopkeper purchased 60 articles at ₹ 150 each. He sold one-third of them at a loss
of 6%.At what price each must he sell the remaining so as to to gain 10% on the whole deal.​

Answers

Given:

Total number of articles = 60

CP of each article = Rs. 150

Find:

Price at which he sell the remaining so as to to gain 10% on the whole deal.​

Solution:

CP of 60 articles = 150 * 60 = Rs. 9000

1/3 of the articles are sold at Loss of 6%.

1/3 of articles = 1/3 * 60 = 20

⟹ CP of 20 articles = 20 * 150 = Rs. 3000

We know that,

SP = (100 - loss%)/100 * CP

⟹ SP of 20 articles = (100 - 6)/100 * 3000

⟹ SP of 20 articles = 94 * 30

⟹ SP of 20 articles = Rs. 2820

Also given that,

Total gain% = 10%

Gain% = Gain/CP * 100

⟹ 10 = Gain/9000 * 100

⟹ 10 * 9000 * 1/100 = Gain

⟹ Rs. 900 = Gain

We know,

Gain = Total SP - Total CP.

We have:

Total SP = SP of 20 articles + SP of 40 articles.

Total CP = CP of 60 articles = 9000.

So,

⟹ 900 = 2820 + SP of 40 articles - 9000

⟹ 900 - 2820 + 9000 = SP of 40 articles

⟹ Rs. 7080 = SP of 40 articles

∴ The remaining articles should be sold for Rs. 7080 to gain 10% on the whole transaction.

I hope it will help you.

Regards.

Answer:

→ 11(2 + y) + 11y

→ 22 + 11y + 11y = 154

→ 22y + 22 = 154

→ 22y = 154 - 22

→ 22y = 132

→ y = 132/22

→ y = 6

Step-by-step explanation:

The highest common factor (HCF) of two numbers is 6.
The lowest common multiple (LCM) of the same numbers is 60

What are the two numbers?
Please explain every step

Answers

Answer:

12 and 30

Step-by-step explanation:

HCF = 6 = 2×3 means they both have in common a factor of 2 and a factor of 3, but at least one of the numbers has no more than one of each of these factors.

LCM= 60=2²×3×5 means That the combined product of their factors counting only once the ones they have in common is 60.

so they could be 2×2×3 = 12 and 2×3×5 = 30

Which of the following measures is most appropriately monitored by a p chart? group of answer choices the weight of a 3 month old baby. The diameter of a piston. The proportion of students absent from class each day. The weight of a bushel of wheat. The temperature of a class room.

Answers

The percentage of pupils that miss class each day is the most appropriate indicator to track with a p chart. P charts are a specific kind of control chart used to track the percentage of nonconforming products produced over time in a process.

It is frequently applied to attribute data, where the data can be categorised as conforming or nonconforming depending on particular standards.The percentage of pupils that skip class daily in the given alternatives can be categorised as either a conforming (present) or nonconforming (missing) feature. We can track the variation in absenteeism and see any patterns or trends that might need attention or intervention by using a p chart to track the percentage of pupils who are missing over time.

learn more about percentage here :

https://brainly.com/question/32197511

#SPJ11



A double fault in tennis is when the serving player fails to land their serve "in" without stepping on or over the service line in two chances. Kelly's first serve percentage is 40%, while her second serve percentage is 70%.


c. Design a simulation using a random number generator that can be used to estimate the probability that Kelly double faults on her next serve.

Answers

The estimated probability of Kelly double faulting on her next serve would be (600 + 300) / 1000 = 0.9 or 90%.

To design a simulation using a random number generator to estimate the probability that Kelly double faults on her next serve, we can follow these steps:

1. Determine the probability of Kelly double faulting on her first serve:
  - Given that her first serve percentage is 40%, the probability of Kelly landing her first serve "in" is 0.40.
  - Therefore, the probability of Kelly double faulting on her first serve is the complement of 0.40, which is 1 - 0.40 = 0.60.

2. Determine the probability of Kelly double faulting on her second serve:
  - Given that her second serve percentage is 70%, the probability of Kelly landing her second serve "in" is 0.70.
  - Therefore, the probability of Kelly double faulting on her second serve is the complement of 0.70, which is 1 - 0.70 = 0.30.

3. Use a random number generator to simulate the serve:
  - A random number generator can be used to generate a random number between 0 and 1.
  - If the generated random number is less than or equal to 0.60, it represents Kelly double faulting on her first serve.
  - If the generated random number is greater than 0.60 but less than or equal to 0.90, it represents Kelly double faulting on her second serve.
  - If the generated random number is greater than 0.90, it represents Kelly successfully landing her serve "in".

4. Repeat the simulation multiple times:
  - By repeating the simulation multiple times, we can obtain an average probability of Kelly double faulting on her next serve.

For example, if we repeat the simulation 1000 times, and Kelly double faults on her first serve in 600 instances and on her second serve in 300 instances, the estimated probability of Kelly double faulting on her next serve would be (600 + 300) / 1000 = 0.9 or 90%.

Remember, this is just an estimation based on the provided percentages and random number generation. The actual probability may vary in real-life situations.

To know more about probability visit:

https://brainly.com/question/32117953

#SPJ11

b)
Simplify
45e6 f8
5ef2

Answers

Answer:

1800e^7f^3

Step-by-step explanation:
I'm assuming you mean (45e^6)(8f)(5ef^2)

we can simplify this into 45e^68f5ef^2 because of the commutative and associative properties. Then we can simplify into (45 * 8 * 5 ) into 1800. Then by combining like terms we can change e^6 f e f&2 into e^7 f^3 which added together with 1800 gives you the answer.

hope this helped!

A normal population has mean = 58 and standard deviation 0 = 9. what is the 88th percentile of the population? Use the TI-84 Plus calculator. Round the answer to at least one decimal place, The 88th percentile of the population is

Answers

The 88th percentile of the population is 68.5, rounded to one decimal place.

To find the 88th percentile of a normal distribution with mean 58 and standard deviation 9, we can use the TI-84 Plus calculator as follows:

Press the STAT button and select the "invNorm" function.Enter 0.88 as the area value and press the ENTER button.Enter 58 as the mean value and 9 as the standard deviation value, separated by a comma.Press the ENTER button to calculate the result.

The result is approximately 68.5. Therefore, the 88th percentile of the population is 68.5, rounded to one decimal place.

To know more about standard deviation refer to-

https://brainly.com/question/23907081

#SPJ11

Other Questions
Why does Prufrock not speak to the women at the party?O He fears that they will reject him.O He won't interrupt their meaningful discussions.O He used to date several of them.O He was not invited to the party. Whats the importance of the character of maximiliano? What does cleofilas perception of him tell us about her What is pH means in chemistry? What is the value of the expression below if a=5, b=18, and c=8? 169 - a2 ______ +24b - c Please help! I'm in a hurry Ivan rocks 2 1/8 miles to his aunts house he has already walked 3/4 miles how much further does he have to go explain how you solved Find the value of x. Classify the triangle by its angles. What is the surface area of this toy chest? what are the major functions of an i/o module? 9. Social responsibility is a voluntary obligation. A nurse is caring for a client who has chrons disease. Which of the following food choices would follow the recommended diet for client who have chrons disease. What word means to be passed on from one generation to the next? Which question is not answered by the Article?A. How many times a year is the Giant Student Farmers Market held?B. Who helps the students learn to prepare what they've grown?C. When was the very first Giant Student Farmers Market held?D. How much money do the students earn from the farmers markets? Find 5/6 of 15. Express your answer in the simplest form. Find mcbw of the picture True or False. a strict-liability tort occurs when a defendant acts with the intention of engaging in a specific act that ultimately results in injury. Jon has to pay $7.00 admission for the skating rink in $1.50 per hour to rent rollerblades. How many hours can he skate for $19? Example of hypothesis proposal: My hypothesis is that as a countrys population increases its unemployment also increases. I think these two variables are related this way because if there are more people in a country, then there will be more people wanting to find jobs and not all of them will be successful. To test this hypothesis, I will look at "population, total" and "unemployment, total (% of total labor force) (modeled ILO estimate)" for Nicaragua and France, for the period 2007-2016. Can you give 2 example like this but in china and india laboure force and unemployment? ___________________ is the trait (usually physical) that draws your attention to the person. A film editor worked from home on commercials. The company would send videos to the film editor. The film editor would later upload the result. The film editor would wake up before dawn to upload videos. The film editor's connection uses coaxial cable. What is the most likely explanation of uploading at that time. Select two options. The upload speed was higher than the download speed at that time of day. The busiest time of internet traffic in that area is just before dawn. The internet service provider throttled the maximum speed at busy times of the day The company would not accept videos at other times of the day The least busy time of internet traffic in that area was just before dawn. Which of the following choices has the correct spelling?A. gretO B. greetO C. grettO D. grret Please help