The time taken by the two men will be equal to 26 hours
<h3>What is speed?</h3>
The speed is defined as the ratio of the time distance traveled by the body to the time taken by the body to cover the distance.
here two men are walking at different speeds like
v₁=6 miles per hour
v₂=10 miles per hour
The time taken by them to separated by the distance of 100 miles each so that both of them separated by the distance of 200 miles.
t₁= {100}/{6}=16.66 hours
t₂= {100}/{10}=10 hours
total time taken will be
t₁+t₂=16.66+10=26.66 hours
To know more about Speed follow
brainly.com/question/6504879
#SPJ1
Answer: y = 25x + 50
Explanation: the total cost if the rental is a linear function of the number of days of the rental (x). Each day costs $25, so that is the slope of the line. Since there is also a one-time fee, independent of the number of days, this amount $50 represents a vertical shift of the line on the graph, by 50. y=25x+50 is an algebraic expression of that.
Answer:
Hi there!
Your answer is:
x= 18
Step-by-step explanation:
3x+70=8x-20
Isolate x on left side
3x+70=8x-20
-8x -8x
-5x +70 = -20
Isolate whole numbers on right side
-5x +70 = -20
-70 -70
-5x = -90
Isolate x by dividing both sides by -5
-5x = -90
/-5
x= 18
I think you forgot to attach a pic.
Answer:
Step-by-step explanation:
programs can be written in multiply languages. for this solution I'll be writing in C++.
#include<iostream> // this is called the preprocessor definition
using namespace std;
int main() //the main function
{
int num, product; //declaration of the variables
cout << "enter the whole number";
cin >> num;
product = num * 12;
cout << product; // displaying the final results
return 0;
}