--description--
This next video will show you the connection between functions and graphing. Notice how the graph is a way to represent the inputs and outputs of a function. Then the video will show you how to graph a function with Python.
Here is the Colab notebook to go with the last two videos so you can start making your own graphs.
--assignment--
Add code to your algebra Colab notebook for functions and graphing.
Run the following notebook to see more ways to create graphs using algebra and Python.
--question--
--text--
Which of the following would put a blue line on a graph?
--answers--
plt.plot([0,0],[10,10],'b-')
plt.plot([0,0],[10,10],'bo')
plt.plot([0,10],[0,10],'b')
plt.plot([10,10],[10,10],'b^')
--video-solution--
3