Answer:
82 cm
Step-by-step explanation:
In rectangles diagonals are equal and bisect each other
AO = BO
5x + 1 = 4x + 9
Subtract 1 from both sides
5x = 4x + 9 -1
5x = 4x + 8
Subtract 4x from both the sides
5x - 4x = 8
x = 8
AO = 5x + 1
= 5*8 +1
= 40 + 1
AO= 41 cm
Diagonal = 2*41 = 82 cm
Answer:

Step-by-step explanation:
start by foiling out the given function

next, use the power rule to find the derivative
power rule: To use the power rule, multiply the variable's exponent n, by its coefficient a, then subtract 1 from the exponent. If there's no coefficient (the coefficient is 1), then the exponent will become the new coefficient.

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.