A) If 9 students sharpen 18 pencils in 2 minutes,Then if the time is halved, it will take twice as many men to sharpen 18 pencils.Hence it will take 18 students to sharpen 18 pencils in one minute B) y & 1/x. Then y = K/x where K is our constant of proportionality.Then K = yx. When x = -64 and y = -16 then K = -64 * -16 = 1024. Option DC) When x = 3 y = 8. So for an inverse variation K as calculated from B = 3 * 8 = 24.Then when K = 24 and y = 6; we have 24 = 6x. Hence x = 4. Option A
4.4354 rounded to 2 decimal places is 4.44
Answer:
The slope of the line passing through the points (-3, 7) and (2, -6) is -13/5.
Step-by-step explanation:
Use the slope formula to find the slope of the line based on two points.
m = y₂ - y₁/x₂ - x₁
Substitute the values
m = -6 - 7/2 - (-3)
Simplify.
m = -13/5
The slope of this line is -13/5.
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.