Back to Freecodecamp

Parent Graphs

curriculum/challenges/english/blocks/learn-parent-graphs-and-polynomials/6363d2529078df117ce4c402.md

latest521 B
Original Source

--description--

In this video, you will see what these parent graphs look like, how to modify them, and how to do this all with Python code.

Here is the <a href="https://colab.research.google.com/drive/1uwKuaHCC2WCUFKmXW-5NqWUlEP9ak7Pz?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">Colab notebook to go along with this video.</a>

--questions--

--text--

In numpy, what is the cube root of x?

--answers--

cbrt(x)


cube_root(x)


root3(x)


root(x,3)

--video-solution--

1