4x - 5(x - 2) = 12x + 4 - x
4x - 5(x) - 5(-2) = 12 - x + 4
4x - 5x + 10 = 11x + 4
-x + 10 = 11x + 4
<u>+ x + x </u>
10 = 12x + 4
<u>- 4 - 4</u>
<u>6</u> = <u>12x</u>
12 12
0.5 = x
Answer:
If the question is
then the answer is no real solution. If the question is 2x - 18x + 65 than the answer is -16x+65
16+24xy+9y2 that is what I got
Answer:
➩ 
Step-by-step explanation:

➨ We can also solve by completing both squares, however. Since we can pull out the square root.
➩ Define of Absolute Value/Square Root
➩ 
Thus, our new equation is ➩ 
To solve an absolute-value equation, let there be two conditions.
➨ Where x ≥ 0

Move x to another side

➨ Where x < 0

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.