question id: aspen-dig-ship-1
🟡 Loading...
Exercise 1 Create a function, which iterated sufficiently from a starting guess, will implement Newton’s method to calculate
question id: aspen-dig-ship-1
Now you will translate
question id: aspen-dig-ship-2
question id: aspen-dig-ship-3
Implement
5.5
3.659091
3.141593
3.196005
3.162456
3.162354
3.162278
question id: aspen-dig-ship-4
N()
to find N()
to get an answer right to within 1% of the true number?
After 2 steps we get 4.202
After 3 steps we get 4.713.
After 3 steps we get 4.472.
After 4 steps we get 4.472.
After 4 steps we get 4.478.
question id: aspen-dig-ship-5
6 Modify your N()
once again to find
2.154
2.320
2.875
2.912
question id: aspen-dig-ship-6
Exercise 2 We introduced Newton’s method as a technique for finding zeros of functions. For instance, for finding zeros of
Exercise 3
antiD()
D()
Iterate()
question id: birch-wake-linen-1
antiD()
D()
Iterate()
Solve()
question id: birch-wake-linen-2
Solve()
and argM()
return what kind of computer object?
a number
a function
a graph
a data frame
question id: birch-wake-linen-3
Exercise 4 As an example of situation where Newton’s method fails, consider
Take a second Newton step, that is, a step starting at
Try a simple modification to Newton’s method that can help deal with such situations. In the figure above, the full Newton step puts
In your modification, instead of taking the full Newton step, take a step from
Exercise 5
better()
function to solve for better()
enough times to get To help, we will give the hint that
better()
, that you are very close to the true answer.
Exercise 6 A simple robot arm to move things in the
Each link is moved by a digitally-controlled motor. To position the robot, commands are sent to the two motors to set their respective angles. For instance, in the diagram the motor-1 angle,
The problem faced by the robot designer is to allow the user to input a series of
For simplicity, assume that the link lengths are both
At this point, play with the problem a bit. Mark a point on your desk or paper. This will be the location of the base of the robot. Take two pencils, let’s call them “yellow” and “green,” putting the eraser of yellow at the base location and the eraser of green at the tip of yellow. Now, pick another point on your desk or paper to be the target for the robot arm. (This must be closer to the base than the sum of lengths of the two pencils.) Change the orientation of the pencils, keeping yellow attached to the base and green attached to the tip of yellow. Your job is to find an orientation that will place the tip of green on the target. Try different target points until you feel comfortable that you understand how to solve the problem.
Now to create a mathematical model of the situation so that we can automate the solution. The purpose of this model is to find
From your experience using pencils as the model of the robot, you may have noticed that the location of the “elbow” of the robot arm is key to the solution. Find the right position for the elbow and the angles can be calculated from trigonometry.
Note that the position of the elbow, which we will denote with coordinates
elbow_u(theta1)
and the other elbow_v(theta1)
.
elbow_to_target_dist(theta1, x, y)
that will use elbow_u()
and elbow_v()
to calculate the distance from the elbow to the target point dist_at_theta(theta1, x, y)
that, given an angle theta, will return the distance from the elbow to the target. The logic is to use elbow_u()
and elbow_v()
to find the location of the elbow elbow_to_target_dist()
.elbow_to_target_dist(theta1, x, y)
to find a value of theta1
that will make the distance equal to the length theta1
, you will know the position of the elbow that is consistent with reaching the target from the base with the two links.
target_x
and target_y
.elbow_to_target_dist(theta1, x=target_x, y=target_y)
as a function of theta1
over the domain elbow_theta1(x, y)
that takes the elbow_theta1(x, y)
function, use Zeros(dist_at_theta(theta1) - L, bounds(theta1=-pi:pi))
.