19.5k views
2 votes
Patrick travels 49 miles per hour. How long will it take him to travel 490 miles? Provide an answer, in hours, accurate to the nearest tenth

User Agent
by
9.0k points

2 Answers

4 votes

Answer:

Explanation:

The + and - designations are important in computer programming, especially with video game development.

In video games, the motion of characters or objects and defined with vectors, just like this. However, in computer code, we have no way of cleanly saying "to the east," or "to the left."

So instead, we will have something written like this: (assuming that "num" is a Vector object).

num = (+1,0,0);

This states that the vector called num is +1 on the X axis. If it were written as (0,-1,0), then this would denote that the object moves -1 on the Y axis, or what we might call "down".

So the + and - don't mean that the actual value is negative, it just means that it is forward / backward relative to the * starting point * on the axis.

So if the object is originally at (4, 2, 7), and the object moves, or is displaced, by a vector of (-1, 2, 0), then the final position is at (3, 4, 7).

So + and - don't represent true positive and negative values, in this case, they just try to show whether or not a value on the X, Y, or Z access has increased or decreased from it's original spot / value.

This is an important concept in video game development, and takes up a large portion of programming a typical video game.

User David Carlisle
by
8.7k points
2 votes

Answer:

10 hours

Explanation:

To solve this problem, we can use the formula:

time = distance / speed

where distance is the distance traveled, speed is the speed of the traveler, and time is the time it takes to travel that distance.

In this case, the distance is 490 miles and the speed is 49 miles per hour. So, substituting into the formula, we get:

time = 490 miles / 49 miles per hour

time = 10 hours

Therefore, it will take Patrick 10 hours to travel 490 miles at a speed of 49 miles per hour.

User Vretamal
by
8.5k points