Kenyan Eliud Kipchoge set a new world record for men of 2:01:39 on September 16, 2018. Assign his average speed in km/h to the variable marathon. The marathon distance is 42.195 kilometers? How to Calculate ?
Show older comments
Kenyan Eliud Kipchoge set a new world record for men of 2:01:39 on September 16, 2018. Assign his average speed in km/h to the variable marathon. The marathon distance is 42.195 kilometers.
2 Comments
Amol Shahane
on 16 Apr 2020
Time_2nd=(2*60*60)+(01*60)+39;
Distance_2nd=42.195*1000;
marathon=(Distance_2nd*18)/(Time_2nd*5)
Puru Bhatia
on 20 Oct 2020
distance2=42.195;
time2= 2+(1/60)+(39/3600);
marathon=distance2/time2
Accepted Answer
More Answers (4)
Walter Roberson
on 12 Apr 2020
0 votes
Speed is number of kilometers travelled divided by number of hours spent travelling. But you would have known that from the definition of speed, and that is not a MATLAB question.
3 Comments
AHMED ELKAFAFY
on 13 Apr 2020
but we found this question in a course "introduction to programming with MATLAB" and we did not understand this question
AHMED ELKAFAFY
on 13 Apr 2020
now i understand this question
this man run 42.195 kilometers in 2 hours and 1 minite and 39 sec
so it is very simple
Khom Raj Thapa Magar
on 15 Jun 2020
Yes you're right
Muhammad Faizan Naveed
on 15 Apr 2020
Question 1
Track_distance_in_km=100./1000;
Time_in_h=9.58./3600;
hundred=Track_distance_in_km./Time_in_h
Question 2
Time_2nd_question=(2.*60.*60)+(01.*60)+39;
Distance_2nd=42.195.*1000;
marathon=(Distance_2nd.*18)./(Time_2nd_question.*5);
1 Comment
Walter Roberson
on 15 Apr 2020
Why are you converting to degrees Farhenheit ?
vmnf kfnk
on 27 Apr 2020
y=0.1/9.58;
hundred=y*3600
x=42.195/((121*60)+39);
marathon=x*3600
Khom Raj Thapa Magar
on 15 Jun 2020
distance_in_km = 100./1000;
time_in_h = 9.58 / (60. * 60);
hundred = distance_in_km / time_in_h;
disp(hundred);
Time_2nd_question=(2.*60.*60)+(01.*60)+39;
Distance_2nd=42.195.*1000;
marathon=(Distance_2nd.*18)./(Time_2nd_question.*5);
disp(marathon);
Categories
Find more on Cell Arrays in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!