I have a table that I want students to find specific values from a quadratic equation. Then I’d like to graph the quadratic from those points.
I can write a regression using a table in the graph, but how do I input the table values from table component into the table in the graph component?
I found @JayChow’s post
using regression Y~aX^2+bX+c
and the numberList
in CL for X
and Y
from the table I can graph it. BUT. How do I guarantee that the second point will always be the vertex?
I need a third point. I can use symmetry to get a third point, but how do I append that to the X & Y numberList
s?
width=|${table1.cellContent(1,2)}-${table1.cellContent(1,3)}|
gets me the parabola width from y-intercept and vertex but how do I append a new value based on that to the lists?
Here’s what I’m working with: