First we clear y from the given equation
x + 10y = 260
10y = 260-x
y = (260-x) / (10)
Then, we evaluate the function within the domain of it
x = 0
y = (260- (0)) / (10)
y = (260) / (10)
y = 26
x = 10
y = (260- (10)) / (10)
y = (250) / (10)
y = 25
That is, you travel 1 mile in 10 minutes.
Therefore, traveling 26 miles will take:
(26) * (10) = 260 min
answer
it takes for the runner to reach the school 260min.
Answer:
4.7
Step-by-step explanation:
Just do 28/6 and the simplify it to 14/3 and divide and get 4.6 repeating round it to 4.7
Answer:
3, 15, 14
Step-by-step explanation:
x + 5x + ( 5x -1) = 32
11x - 1 = 32
11x = 32 + 1
11x = 33
11x/11 = 33/11
x = 3
therefore
the first number is 3
the second is 5 × 3 = 15
the third number is 15 - 1 = 14
Answer:
10.2 ft
Step-by-step explanation:

64 +
= 169

b=
b= 10.2469
Answer:
> a<-rnorm(20,50,6)
> a
[1] 51.72213 53.09989 59.89221 32.44023 47.59386 33.59892 47.26718 55.61510 47.95505 48.19296 54.46905
[12] 45.78072 57.30045 57.91624 50.83297 52.61790 62.07713 53.75661 49.34651 53.01501
Then we can find the mean and the standard deviation with the following formulas:
> mean(a)
[1] 50.72451
> sqrt(var(a))
[1] 7.470221
Step-by-step explanation:
For this case first we need to create the sample of size 20 for the following distribution:

And we can use the following code: rnorm(20,50,6) and we got this output:
> a<-rnorm(20,50,6)
> a
[1] 51.72213 53.09989 59.89221 32.44023 47.59386 33.59892 47.26718 55.61510 47.95505 48.19296 54.46905
[12] 45.78072 57.30045 57.91624 50.83297 52.61790 62.07713 53.75661 49.34651 53.01501
Then we can find the mean and the standard deviation with the following formulas:
> mean(a)
[1] 50.72451
> sqrt(var(a))
[1] 7.470221