Answer:
230.9 ft
Step-by-step explanation:
The side ratios of a 30°-60°-90° triangle are 1 : √3 : 2
In ∆ABC, BC = AB/√3 ≈ 115.47 ft
In ∆ABD, BD = AB√3 ≈ 346.41 ft
Then the length CD is ...
346.41 ft -115.47 ft = 230.94 ft
The distance CD is about 230.9 ft.
Answer:
4.013 units
Step-by-step explanation:
We know that the volume of a cone is given by the following equation:
v = pi / 3 * r ^ 2 * h
we need to know the height, therefore we solve for h:
h = 3 * v / (pi * r ^ 2)
replacing v = 105 and r = 5
h = 3 * 105 / (3.14 * 5 ^ 2)
h = 4.013
Which means that the height measures 4.013 units
Hello there,
14.2% as a decimal would be 0.142
Glad to help!
~Hottwizzlers!
Answer:
16.8
Step-by-step explanation:
You have to do 360 divided my 6048 because you have to do things on both numbers like moving the decimal.
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