Would it be <span>SOLVE FOR TIME TRAVELED WITH IN 60 MILES @ 12MILES/HR
DISTANCE=VELOCITY X TIME
T=S/V
T=60/12
T=5HRS
TOTAL TIME OF JOURNEY =5+3=8HRS.....ANSWER</span>
4/7 = 8/14 = 12/21 = 16/28, etc
I believe your answer is going to be -6 7/3. Reciprocals are the opposites of a number, so I switched the sign on the 6 and made it -. When dealing with fractions, the reciprocal is essentially just flipping the numerator and denominator, which is how I got 7/3.
I hope I helped. Best of luck!
Answer:
Step-by-step explanation:
False you must multiply the coefficient (numbers) and add the exponents.
Step-by-step explanation:
Hi, your question isn't totally complete. Here's the likely full question:
Random walk. A Java programmer begins walking aimlessly. At each time step, she takes one step in a random direction (either north, east, south, or west), each with probability 25%. She stops once she is at Manhattan distance r from the starting point. How many steps will the random walker take? This process is known as a two-dimensional random walk.
Write a program RandomWalker.java that takes an integer command-line argument r and simulates the motion of a random walk until the random walker is at Manhattan distance r from the starting point. Print the coordinates at each step of the walk (including the starting and ending points), treating the starting point as (0, 0). Also, print the total number of steps taken.