Grid: | ||
Tics Lines: |
|
Width
px
|
Hash Lines: |
|
Width
px
|
Labels: |
|
Font
px
|
Trace Lines: | ||
Robot 1: |
|
Width
px
|
Robot 2: |
|
Width
px
|
Robot 3: |
|
Width
px
|
Robot 4: |
|
Width
px
|
Axes: | x-axis | y-axis | Show Grid |
Grid: | 24x24 inches | 36x36 inches | 72x72 inches |
96x96 inches | 192x192 inches | ||
Quad: | 4 quadrants | 1 quadrant | Hardware |
Units: | US Customary | Metric |
Background: |
![]() |
|
|
|
Given y = -2/3x + 6. Have the tickbot graph the line described by this equation by plotting a point and using the slope to find additional points. Your graph must go through the y-intercept and contain three additional points not including the y-intercept. The points should lie on both sides of the y-intercept (in Quadrant II and I). Have the last point of the line be (6,2).
/* Code generated by RoboBlockly v2.0 */ #include <linkbot.h> CLinkbotI robot; double radius = 1.75; double trackwidth = 3.69; robot.traceColor("red", 4); robot.traceOff(); robot.drivexyTo(-3, 8, radius, trackwidth); robot.traceOn(); robot.drivexyTo(0, 6, radius, trackwidth); robot.drivexyTo(3, 4, radius, trackwidth); robot.drivexyTo(6, 2, radius, trackwidth);
Problem Statement: Given y = -2/3x + 6. Have the tickbot graph the line described by this equation by plotting a point and using the slope to find additional points. Your graph must go through the y-intercept and contain three additional points not including the y-intercept. The points should lie on both sides of the y-intercept (in Quadrant II and I). Have the last point of the line be (6,2). |
|||||||||||