Answer: Situation A fits the equation
Explanation:
Sierra has 340 oz of water and is being filled (+) 5oz every minute(x) = Brian has a bucket with 650 oz of water and is being drain( - ) 8oz every minute(x)
Answer:
3000 cm^3.
Step-by-step explanation:
If the top number is 15 it's
15 * 20 * 10
= 3000 cm^3.
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
Answer:
See below ↓↓
Step-by-step explanation:
<u>Finding the radius</u>
- C = 2πr
- 25 = 2 x 3.14 x r
- r = 25 / 6.28
- r = 3.98 cm ≅ 4 cm
<u />
<u>Surface Area</u>
- 4πr²
- 4 x 3.14 x 4 x 4
- 3.14 x 64
- 200.96
- <u>201 cm²</u>
<u></u>
<u>Volume</u>
- 4/3πr³ = 4πr² x r/3
- 201 x 4/3
- 67 x 4
- <u>268 cm³</u>