Answer:
Step-by-step explanation:
the relationship between <4 and <7 is they are vertical angles
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
Make 2 equations one for the price and one for quantity. so first set x = AA and y= AAA. for price 37= 1x+.75y. now for the quantity we have x+y=42. Now we can solve by subtracting the equation for price from the equation for quantity and we get .25y =5. solving this we get y= 20. Now we plug that value back in and solve for x. 22 double A's and 20 triple A's.
<h2>Hello!</h2>
The answer is:
It will take 4.5 hours for two bricklayers to lay a total of 3150 bricks.
<h2>Why?</h2>
From the statement, we know that on Monday, bricklayers took 3 hours to lay a total of 4200 bricks.
So, we have that the rate of the four bricklayers is given by the following equation:


Therefore, we have that the rate of the four bricklayers is 1400 bricks per hour, meaning that each bricklayer can lay 350 bricks per hour.
Now, to calculate how many hours it will take to the 2 bricklayers to lay a total of 3150, we need to divide the calculated rate (for bricklayers) by two, since there are only 2 bricklayers working on Tuesday.
So, calculating the time, we have:





Hence, we have that it will take 4.5 hours for two bricklayers to lay a total of 3150 bricks.
Have a nice day!