Answer:
option 4 is the right answer
Answer:
80n+20=total cost
Step-by-step explanation:
We don't know the value of n, but we don't need it for an expression. We know that the family has to pay $80 per night that they stay at the hotel. Modeling this would look like: 80n (80*n for nights). Also, we know that the family MUST pay a $20 fee. So, we can add that on to the expression to look like this, 80n+20=total cost.
Hope this helps!
Have a nice evening.
You would add up all of the numbers and then divide them by 5 since you have a total of 5 different sets of numbers (To get the mean). Then you have to find the median by putting all of the numbers in numerical order and get the number in the middle. Finally you subtract the median from the mean and you end up getting “B” as your answer.
Answer: -26=p
Explanation: The slope formula is m=(y2-y1)/(x2-x1).
Thus, we have 6=(2-p)/(-10-(-6)).
Combining the xs gives us 6=(2-p)/-4.
Multiplying both sides by -4 leaves us with -24=2-p.
We do -24-2 to isolate p and find that p=-26.
Answer:
age<-c(20,30,40)
names(age)<-c ("ELI", "ALI", "JON")age
## ELI ALI JON
## 20 30 40
Step-by-step explanation:
The above given vector named age consists of three elements. Each element consists of ages of three people, ELI, ALI and JON, such that 20 corresponds to ELI, 30 to ALI and 40 to JON.