Answer:
nate has n+6 apples
Step-by-step explanation:
Answer:
30 x 3 - 80 is 10
Step-by-step explanation:
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.
A. Write a function f(x) to represent the price after the 80% markup.
<span>b. Write a function g(x) to represent the price after the 25% markdown. </span>
<span>c. Use a composition function to find the price of an item after both price adjustments that originally costs the boutique $150. </span>
<span>d. Does the order in which the adjustments are applied make a difference? Explain.
</span>
answers
<span>a) f(x) = 1.8x
b) f(x) = 0.75(1.8x)
c) f(150) = 0.75(1.8(150) = $202.50
d) No, it doesn't matter. The result is the same.
</span>