Answer:
the answer is 21
Step-by-step explanation:
Answer:
he would be 21
Step-by-step explanation:
do 2020 - 2005 which is 15+6=21
When a scientist conducted a genetics experiments with peas, one sample of offspring consisted of 933 peas, with 729 of them having red flowers. If we assume, as the scientist did, that under these circumstances, there is a 3/4 probability that a pea will have a red flower, we would expect that 699.75 (or about 700) of the peas would have red flowers, so the result of 729 peas with red flowers is more than expected.
. If the scientist's assumed probability is correct, find the probability of getting 729 or more peas with red flowers.
b. Is 729 peas with red flowers significantly high?
c. What do these results suggest about the scientist's assumption that 3/4 of peas will have red flowers
The solution to the statistics have been given below
How to solve for the probabilityThe probability = 3 / 4 = 0.75
n = 933
x≥ 729
np = 0.75 * 933
= 699.75
√933 * 0.75 * 0.25
= √174.9375
= 13.23
using the continuity correction we have
729 - 0.5
= 728.5 - 699.75 / 13.23
= 2.17
The p value is 0.015003.
there is a 1.5% chance of getting 729 peas with red flowers
b. given that Z is greater than 2, this can be said to be high
c. These results suggest that the scientist maybe wrong in his assumption
Read more on statistics here:https://brainly.com/question/25082768
#SPJ1
Solve equation 2x+7=17
Answer: x =5
Step-by-step explanation:
subtract 7 on both sides than divide by 2
Answer:
x = 5
Step-by-step explanation:
Given: 2x + 7 = 17
1. Subtract 7 from both sides
2x + 7 - 7 = 17 - 7
2x = 10
2. Divide both sides by 2
2x ÷ 2 = 10 ÷ 2
x = 5
Final answer: x = 5
Learn more about solving equations here:
brainly.com/question/15154296
what percent is 20 out of 80?
Answer: 25%
Step-by-step explanation: brainlest will be nice
Answer:
25%
Step-by-step explanation: IN THE PICTURE
1st picture - Full 2 ways to do this with explanation
2nd picture - First way to do this with explanation
3rd picture - Second way to do this with explanation
THANKS!
Calculate: 9.34 - 11.7 + (-6.571)= ?
Solution
\(\begin{gathered} 9.34-11.7+(-6.571) \\ 9.34-11.7-6.571 \\ -8.931 \end{gathered}\)Therefore, the asnwer is
\(-8.931\)all expressions for 10x-30
Which expression is equivalent to (15aºb²c34) (3a166-29cº) for all values of a, b, and
c where the expression is defined?
The answer is 45a16c34b27
HELP ME PLEASE THIS IS FOR A GRADE AND THIS IS ALL I NEED!!!
Answer:
1. 12 bottles would cost $24.
2. The ratio is 1:2, 1 bottle to $2.
3. For each additional bottle of water I purchase, the price will go up by $2.
May I have brainliest please? :)
Use integration to find a general solution of the differential equation. (Use C for the constant of integration. dy/dx = e^x/5 + e^x
Answer:
Step-by-step explanation:
rcentage of people who completed or more years of college listed by state are the percentages of the population who have completed or more years of a college education. construct a frequency distribution with classes.
The frequency distribution table of the data is illustrated below.
The data we have been given represents the percentage of people who have completed 4 or more years of college education in different states. To create a frequency distribution, we need to first decide on the number of classes we want to use. In this case, we will use 7 classes.
Next, we need to determine the range of values for each class. To do this, we first find the minimum and maximum values in the data set, which are 18.9 and 37.9, respectively.
The range of values for each class will be (max value - min value) / number of classes, which in this case is (37.9 - 18.9) / 7 = 2.86.
We will start with the first class, which will include all values from 18.9 to 21.76 (the lower limit of the first class plus the range of values for each class). The next class will include values from 21.76 to 24.62, and so on, until we reach the final class which will include all values from 33.18 to 36.04 (the upper limit of the final class plus the range of values for each class).
To create the frequency distribution, we count the number of values in the data set that fall into each class. For example, the first class includes values between 18.9 and 21.76, and there are 2 values in the data set that fall into this range (21.4 and 20.0). We continue this process for each class until we have a table that shows the frequency of values in each class.
To know more about percentage here.
https://brainly.com/question/13729841
#SPJ4
Complete Question:
Percentage of People Who Completed 4 or More Years of College Listed by state are the percentages of the population who have completed 4 or more years of a college education. Construct a frequency distribution with 7 classes.
21.4,26.0,25.3,19.3,29.5,35.0,34.7,26.1,25.8,23.4,27.1,29.2,24.5,29.5,22.1,24,3,28.8,20,0,20.4,26.7,35.2,37.9,24.7,31.0,18.9,24.5,27.0
Write a program to calculate the total price for car wash services. A base car wash is $10. A dictionary with each additional service and the corresponding cost has been provided. Two additional services can be selected. A '-' signifies an additional service was not selected. Output all selected services, according to the input order, along with the corresponding costs and then the total price for all car wash services.
to calculate the total price for car wash services. A base car wash is $10. A dictionary with each additional service and the corresponding cost has been provided. Two additional services can be selected. A '-' signifies an additional service was not selected. Output all selected services, according to the input order, along with the corresponding costs and then the total price for all car wash services.
"""
Python version: 3.6
Python program to calculate the total price for car wash services
"""
# dictionary containing the services as keys and their price as values
services = {'Air freshener' : 1, 'Rain repellent' : 2, 'Tire shine' : 2, 'Wax' : 3, 'Vacuum' : 5}
# variable to store the base car wash price
base_wash = 10
# variable to store the total price
total = 0
# read the 2 services
service_choice1 = input()
service_choice2 = input()
print("ZyCar Wash")
# display the base wash price
print("Base car wash -- ${}".format(base_wash))
total += base_wash # add base_wash to total
# first service read is in services dictionary
if service_choice1 in services:
total += services[service_choice1] # add the price for the service to total
# display the service and its price from dictionary
print("{} -- ${}".format(service_choice1, services[service_choice1]))
# second service read is in services dictionary
if service_choice2 in services:
total += services[service_choice2] # add the price for the service to total
# display the service and its price from dictionary
print("{} -- ${}".format(service_choice2, services[service_choice2]))
# display the total price
print("----")
print("Total price: ${}".format(total))
# end of program
To learn more about Python program click here https://brainly.com/question/26497128
#SPJ4
Given the points (2, k) and (0, -6), for which values of k would the distance between the points be square root of 5?
Answer:
k = -5
k = -7
Step-by-step explanation:
*look at the picture*
Find the area of the region bounded by the functions f(x) = x4 and g(x) = 2 − x2
a. 44/15
b. 22/15
c. 88/15
d. none of these
Been stuck on this one for a while...
Two sides of a triangle have the following measures. Find the range of possible measures for the third side.
12, 8
Answer:
between 4 and 20......................
The number should be bigger than difference of both sides and smaller than sum of both sides.
So
12+8=20
12-8=4
So it should be 4<x<20
which means between 4 and 20
Do you really have brown eyes?
Answer:
4 < x < 20
Step-by-step explanation:
Given 2 sides of a triangle then the third side x is in the range
difference of 2 sides < x < sum of 2 sides , that is
12 - 8 < x < 12 + 8
4 < x < 20 ← range of values for third side
como graficar los puntos (0,6)
y (2,-2)
Has graficado correctamente los puntos (0, 6) y (2, -2) en un sistema de coordenadas cartesianas.
Para graficar los puntos (0, 6) y (2, -2), debes utilizar un sistema de coordenadas cartesianas.
El punto (0, 6) tiene una coordenada x de 0 y una coordenada y de 6. Esto significa que el punto se encuentra en la intersección del eje x y el eje y, a una distancia de 6 unidades arriba del origen. Por lo tanto, dibuja un punto en el origen del sistema de coordenadas y luego desplázate 6 unidades hacia arriba para marcar el punto (0, 6).
El punto (2, -2) tiene una coordenada x de 2 y una coordenada y de -2. Esto indica que el punto se encuentra 2 unidades a la derecha del origen y 2 unidades hacia abajo. A partir del punto (0, 6), muévete 2 unidades a la derecha y luego 2 unidades hacia abajo para ubicar el punto (2, -2).
Una vez que hayas marcado ambos puntos en el sistema de coordenadas, traza una línea recta que los una. Esta línea representa la conexión entre los dos puntos y se conoce como "segmento de recta". Puedes usar una regla o simplemente dibujar una línea recta a mano alzada que pase por los dos puntos.
For more such questions on coordenadas cartesianas
https://brainly.com/question/30128925
#SPJ8
Triangle EFG has vertices E(–3, 4), F(–5, –1), and G(1, 1). The triangle is translated so that the coordinates of the image are E’(–1, 0), F’(–3, –5), and G’(3, –3).
The rule that was used to translate the image Triangle EFG to E'F'G' is
T2,-4(x,y)
Given :
Triangle EFG has vertices E(–3, 4), F(–5, –1), and G(1, 1).The coordinates of the image after being translated are E’(–1, 0), F’(–3, –5), and G’(3, –3)To find out the rule, we need to check the coordinates E and E'
E is (-3,4) and E' is (-1,0)
-3 + x = -1
x = -1 +3
= 2
4 + y = 0
y = 4
So, we can say that 2 is added with x and 4 is subtracted from y to get E'
Let's check with F and F'
F(–5, –1) and F’(–3, –5)
-5+2=-3
-1-4=-5
So the rule used to translate the image is T2,-4(x,y)
A triangle is a polygon with three sides and three vertices. It is one of the basic shapes in geometry. A triangle with vertices A, B, and C are represented as triangle ABC.
In Euclidean geometry, any three points, if not collinear, define a unique triangle and, at the same time, a unique plane (that is, two-dimensional Euclidean space). This means that there is only one plane containing this triangle, and all triangles are contained in one plane. If all geometries were just Euclidean planes, there would be only one plane and all triangles would be in it. But this is not the case in high-dimensional Euclidean space.
Learn more about Triangle here: https://brainly.com/question/1675117
#SPJ1
In a trivia contest, players from teams and work together to earn as many points as possible for their team. Each team can have 3 and 5 players. Each play can score up to 10 points in each round of the game. Elena and four of her friends divided to form a team and play a round. Write an expression, an equation, or an inequality for each quantity described here. If you use a variable, specify what it represents
Answer:
The inequality for each quantity described is given as follows;
0 ≤ A + B + C + D + E ≤ 50
Step-by-step explanation:
The given information are;
The number of players each team can have = between 3 and 5
The maximum number of points a player can score in each round of the game = 10 points
The number of players in Elena's team = Elena + 4 = 5 players
The total number of points Elena's team earns at the end of the round is given as follows;
0 ≤ A + B + C + D + E ≤ 5 × 10
Where the variables A, B, C, D, and E are the points each of Elena and are makes such that the minimum points is 0 + 0 + 0 + 0 + 0 = 0 and the maximum point is 10 + 10 + 10 + 10 + 10 = 5 × 10 = 50, which gives;
0 ≤ A + B + C + D + E ≤ 50.
How do I get the answer to these
The surface areas of the given cylinders are 94.5 in²,150.72 in², 100.48 in², 200.96 in² and 314 in²
What is a cylinder?A cylinder is a three-dimensional shape consisting of two parallel circular bases, joined by a curved surface. The center of the circular bases overlaps each other to form a right cylinder.
Given are cylinders, we need to find the surface area of them,
The surface area of a cylinder = 2πr(h+r), where r and h are radius and height of the cylinder,
1) Height = 2 in and radius = 3 in
Surface area = 2·3.14·3·(3+2) = 94.5 in²
2) Height = 5 in and radius = 3 in
Surface area = 2·3.14·3(5+3) = 150.72 in²
3) Height = 6 in and radius = 2 in
Surface area = 2·3.14·2(6+2) = 100.48 in²
4) Height = 4 in and radius = 4 in
Surface area = 2·3.14·4(4+4) = 200.96 in²
5) Height = 4 in and radius = 4 in
Surface area = 2·3.14·5(5+5) = 314 in²
Hence, the surface areas of the given cylinders are 94.5 in²,150.72 in², 100.48 in², 200.96 in² and 314 in²
Learn more about Cylinder click;
https://brainly.com/question/16134180
#SPJ9
A rancher has a roll of fencing to enclose a rectangular area. The table shows how the area that the rancher can enclose with the fencing depends on the width of the rectangle.
Which quadratic equation gives the area A of the rectangle in square feet given its width in w feet?
Can somebody explain how you get the equation? I don't want just the answer.
Quadratic equation: A = \(w^2\) + 100w
To derive the quadratic equation that relates the area A of the rectangle to its width w, we can analyze the given data points. By examining the table, we notice that the area A increases as the width w increases.
This suggests a quadratic relationship since the area of a rectangle is determined by its length and width.
Let's assume the quadratic equation is of the form A = \(aw^2\) + bw + c, where a, b, and c are constants we need to determine.
Using the given data points (w, A), we can substitute them into the equation and form a system of equations:
When w = 10, A = 900: 900 = \(a(10)^2\) + b(10) + c -- (1)
When w = 20, A = 1600: 1600 = \(a(20)^2\) + b(20) + c -- (2)
When w = 30, A = 2100: 2100 = \(a(30)^2\) + b(30) + c -- (3)
We have three equations with three unknowns (a, b, c), which we can solve simultaneously.
Solving the system of equations (1), (2), and (3) will yield the values of a, b, and c. Substituting these values back into the general quadratic equation form, we obtain the specific quadratic equation:
A =\(w^2\) + 100w.
Therefore, the quadratic equation that gives the area A of the rectangle in square feet, given its width in w feet, is A = \(w^2\) + 100w.
For more such questions on Quadratic equation, click on:
https://brainly.com/question/1214333
#SPJ8
Find the value of x.
A. X = 90
B. X = 32
C. X = 30
D. X = 15
Find the distance between the points (-16,10) and (2,-14)
Answer: The distance is 30
Step-by-step explanation:
To find the distance between the two points,find the difference between the x and y values, square them and add them to find their square root.
10 - (-14) = 24
-16 - 2= -18
24^2 + 18^2 = d^2 where d is the distance
576 + 324 = d^2
900 =d^2
d = \(\sqrt{900}\)
d= 30
Answer:
d=30
Step-by-step explanation:
distance between 2 points: d
d=√(x2-x1)²+(y2-y1)² (-16,10) and (2,-14)
d=√(2-(-16)²+(-14-10)²
d=√18²+(-24)²
d=√324+576
d=√900
d=30
What is the appropriate measure of variation (spread) for these data?
4 7
2 3
4 2
1 3
9 8
5 1
3 2
3 2
4 3
6 5
The appropriate measure of variation (spread) for these data is the standard deviation, which is 2.287.
The appropriate measure of variation (spread) for these data is the standard deviation. Standard deviation is a measure of how much the data values vary from the mean (average) of the data set. It is calculated by taking the square root of the variance, which is the average of the squared differences between each data value and the mean.
To calculate the standard deviation for this data set, follow these steps:
1. Find the mean of the data set by adding up all of the data values and dividing by the total number of values. In this case, the mean is (4 + 7 + 2 + 3 + 4 + 2 + 1 + 3 + 9 + 8 + 5 + 1 + 3 + 2 + 3 + 2 + 4 + 3 + 6 + 5) / 20 = 3.65
2. Find the variance by subtracting the mean from each data value, squaring the result, and then finding the average of these squared differences. The variance for this data set is ((4 - 3.65)^2 + (7 - 3.65)^2 + (2 - 3.65)^2 + ... + (6 - 3.65)^2 + (5 - 3.65)^2) / 20 = 5.2275
3. Take the square root of the variance to find the standard deviation. The standard deviation for this data set is sqrt(5.2275) = 2.287
Therefore, the appropriate measure of variation (spread) for these data is the standard deviation, which is 2.287.
To learn more about the appropriate measure of variation, click here: https://brainly.com/question/28502442
#SPJ11
Please show me explanations on these
Answer:
1)55,44
2)6,4
3)49,8
4)11,7
5)12,444
6)23,04
7)12,46
8)15,06
9)31,68
10)30,4
Step-by-step explanation:
Recheck them and make sure there are no mistakes
WILL GIVE BRAINLIEST PLZZZZZZ HELP
Ms. Walker used a coordinate plane to plot her students' scores on a recent quiz. She let x represent the number of correct answers they had on their quiz and y represent the number of points earned. She then plotted the ordered pairs (17, 68), (20, 80), and (24, 96) to represent the data from three students. What is the slope of the graph in points per question? A.0.25 B.0.75 C.3.00 D.4.00
Answer:
m=4
Step-by-step explanation:
to find the slope m take two points : (17,68). (20,80)
m=y2-y1/x2-x1
m=80-68/20-17=12/3= 4
m=4
y=4x
Jea need $140 to buy a bicycle. He ave $10 each week. He ha already aved $60. How many week from now can jea buy the bicycle
Which table represents this function?
y=5x-2
A.
x y
1 4
2 5
3 6
4 7
B.
x y
1 3
2 6
3 9
4 12
C.
x y
1 3
2 5
3 7
4 9
D.
x y
1 3
2 8
3 13
4 18
Answer:
D.
Step-by-step explanation:
a +-21 = -38
help me please
Answer:
A= -17
Step-by-step explanation:
A +-21 = -38
+21 +21
-38+21= -17
A= -17
Answer:
a = -17
Step-by-step explanation:
To solve this, we need to get A alone:
A + -21 = -38
—- +21- +21
Remember, when you do something to one side, you need to do the same thing to the other side.
Now:
A = -17!
To check:
-17 + -21 = -38
Therefore, A = -17
which of the following series satisfy the given condition. the series is geometric with x = 1/3.
The answer is Series 1. It satisfies the given condition as it is a geometric series with a common ratio of 1/3. Each term in this series is obtained by multiplying the previous term by 1/3, which confirms that it is indeed a geometric series with the given condition.
We need to test each series to see if it is geometric with x = 1/3. Remember, a geometric series is one in which each term is obtained by multiplying the previous term by a constant value. In this case, that constant value is x = 1/3. Let's test three series to see if they fit the given condition: 1) 3, 1, 1/3, 1/9, 1/27, ...
To see if this series is geometric with x = 1/3, we can check if each term is obtained by multiplying the previous term by 1/3.
1/3 ÷ 1 = 1/3
1/9 ÷ 1/3 = 1/3
1/27 ÷ 1/9 = 1/3
Since each term is obtained by multiplying the previous term by 1/3, this series is geometric with x = 1/3.
2) 1, 1/3, 3, 1/9, 9, ...
To test if this series is geometric with x = 1/3, we can check if each term is obtained by multiplying the previous term by 1/3.
1/3 ÷ 1 = 1/3
3 ÷ 1/3 = 9
1/9 ÷ 3 = 1/27
Since the terms are not consistently obtained by multiplying the previous term by 1/3, this series is not geometric with x = 1/3.
3) 1, 1/3, 1/9, 1/27, ...
To test if this series is geometric with x = 1/3, we can check if each term is obtained by multiplying the previous term by 1/3.
1/3 ÷ 1 = 1/3
1/9 ÷ 1/3 = 1/3
1/27 ÷ 1/9 = 1/3
Since each term is obtained by multiplying the previous term by 1/3, this series is geometric with x = 1/3.
To know more about geometric visit :-
https://brainly.com/question/12500691
#SPJ11
serena leans a 24-foot ladder against a 22.8-foot-tall building to climb on the roof.
Serena leans a 24-foot ladder against a 22.8-foot-tall building to climb on the roof is 71.8 degree.
Measurement of Angle:
The measurement of angles is done using basic geometric tools such as protractors and compasses. This tool helps to find precise measurements of angles. A protractor helps provide accurate measurements of angles, while compasses help construct angles. Angles are measured in three ways: degrees, radians, and revolutions.
According to the Question:
Suppose the measure of angle is θ, then we have
Sinθ = 22.8/24
⇒ Sinθ = 0.95
Therefore,
θ = Sin⁻¹ (0.95)
= 71.8 degree.
Therefore, Serena leans a 24-foot ladder against a 22.8-foot-tall building to climb on the roof is 71.8 degree.
Learn more about Degree:
https://brainly.com/question/364572
#SPJ4
Which values are in the range of the function f(x) = -2x + 4 with a domain of (-6,0,6)
The range of the function is x∈[(-8 ,16)]
It is required to find the range.
What is function?A function is defined as a relation between a set of inputs having one output each. function is a relationship between inputs where each input is related to exactly one output. Every function has a domain and codomain or range. A function is generally denoted by f(x) where x is the input.
Given:
Since f(x) = -2x + 4 is linear, its limit values correspond to the limits imposed by the domain (in this case x∈[(-6 ,6)]
By put the value of x in the given function we get,
f(-6) = -2(-6) + 4
=12+4
=16
f(6) = -2*6 + 4
=-12+4
=-8
So the range is -8<x<16.
Therefore, the range of the function is x∈[(-8 ,16)]
Learn more about function here
https://brainly.com/question/12431044
#SPJ4
The cost to rent a moving van is $8.85 plus an additiona $20.40 per hour. If a moving van is rented for 2 hours, what is the cost?
Answer:
49.65$
Step-by-step explanation:
(20.40 x 2) + 8.85 = 49.65 $