Answer:
Stratified Sampling
Step-by-step explanation:
Since Keri divides the day into different strata and each unit is selected from each strata randomly. So, it is Stratified Sampling.
Further, In Stratified Sampling population is divided into several groups such that within the group it is homogeneous and between the group it is heterogeneous. And now a selection of each stratum and unit has an equal chance of selection.
Ok so I'll demonstrate in programming language python.
import math
def circle():
r = float(input("Enter r: "))
a = math.pi * r ** 2
print("Area of circle with r = {0} is {1
}cm2".format(str(r), str(a))
circle()
Answer:
x = 3
Step-by-step explanation:
7(x + 4) - 7 = 48 - 2x ← distribute parenthesis and simplify left side
7x + 28 - 7 = 48 - 2x
7x + 21 = 48 - 2x ( add 2x to both sides )
9x + 21 = 48 ( subtract 21 from both sides )
9x = 27 ( divide both sides by 9 )
x = 3
Answer:
The price of the computer is $1,152
Step-by-step explanation:
Let the price of the computer be $x
The first boy boy had 7/8 of this amount, the amount he has is thus 7/8 × $x = 7x/8
The second boy had 5/6 of what the first boy had. The amount of money he has is thus 5/6 × 7x/8 = 35x/48
Now, the addition of what they have is $696 more than what they need to pay. This amount is x+ 696
Mathematically, this can be represented as;
7x/8 + 35x/48 = x + 696
(42x + 35x)/48 = (x + 696)
77x/48 = (x + 696)
77x = 48(x + 696)
77x = 48x + 33408
77x - 48x = 33408
29x = 33, 408
x = 33,408/29
x = $1,152