Answer:
82
Step-by-step explanation:
For this problem you would first round everything. 9.03 becomes 9, 19.87 becomes 20, 3.11 becomes 3 and 4.97 becomes 5. You then just do the problem. 9 + 20 = 29, multiplied by 3 makes 87, 87 - 5 = 82.
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
Well, given that a quarter equals 5 nickels, we can reason that, in order to get 12 coins, we would have to get 10 nickels (equals 50 cents) and 2 quarters (the other 50 cents, to make a dollar).
You didn't say whether you needed this expressed in a mathematical formula, but knowing the answer already, it shouldn't be hard to come up with one if necessary.
Hope this helps.
Answer:
23,040 minutes
Step-by-step explanation:
16 days = 384 hours = 23,040 minutes