Answer:
$6.20 savings.
Step-by-step explanation:
Thus, a product that normally costs $31 with a 20 percent discount will cost you $24.80, and you saved $6.20. You can also calculate how much you save by simply moving the period in 20.00 percent two spaces to the left, and then multiply the result by $31 as follows: $31 x . 20 = $6.20 savings.
Answer:
90 inches squared
Step-by-step explanation:
Formula for a rhombus is simply the diagonals over 2.
(The diagonals here are 12 and 15)
You could also do this intuitively. Because there is an inscribed right angle, each of the triangles inside are BH/2. Thus, the area of all four is 2BH. The base and height of each of the triangles is 6 and 7.5, so the area is 6 * 7.5 * 2.
The slope is -7. It's a y=mx+b equation where the m value is the slope.
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