Answer:
42
Step-by-step explanation:
B+ p= 10.40
b=2x 2.50
Now using substitution method replace b in first equation with value of second equation basically combing the two equations into one do you end up with one variable to solve .
2 x 2.50 +p =10.40
5 + p=10.40
P=$5.40
b =$5.00
The answer is EACH pendant cost $2.70
(You have to divide 5.40 by two )
Answer:
Step-by-step explanation:
The first 6 rows of the eruptions data :
eruptions waiting
1 3.600 79
2 1.800 54
3 3.333 74
4 2.283 62
5 4.533 85
6 2.883 55
R code :
1. You can directly access the "Faithful" data in R without importing the data. The dataset faithful is present in the R or you can load the datasets. or use install the datasets.load. package
If you have the data in a text file, make sure all the columns and rows are separated by commas
Step 1: open notepad
Step 2: enter data with no spaces but only commas
Step 3: save the file as ‘faithful.txt’ on your Desktop
# Get R help
?read.table
# Import the data
rain<-read.table("C:/Users/YOUR-NAME/Desktop/faithful.txt", header = TRUE,
sep = ",")
Check the data
data("faithful") #Loading Faithful data
head(faithful, 6) #Reading first 6 rows of the data
∫¹₀ min (1, n/y)dy = ∫ⁿ₀ (1, n/y)dn + ∫¹n min (1, n/y) dy
Hope this helps
Answer:
Step-by-step explanation:
The formula for determining the volume of a cylinder is expressed as
Volume = πr²h
Where
r represents the radius of the cylinder.
h represents the height of the cylinder.
π is a constant whose value is 3.14
From the information given,
Height = 19 cm
Since the base area is 24π cm², we would determine its radius by applying the formula,
Area of circle = πr²
24π = πr²
r² = 24
r = √24
Therefore,
Volume of cylinder = π × (√24)² × 19 = 456π cm³
It is approximately
456 × 3.14 = 1431.8 cm³