4.After a dreary day of rain, the sun peeks through the clouds and a rainbow forms. You notice the rainbow
...
nbow is the shape of a parabola.
The equation for this parabola is y = -x2 + 36.
Graph of a parabola opening down at the vertex 0 comma 36 crossing the x–axis at negative 6 comma 0 and 6 comma 0.
Create a table of values for a linear function. A drone is in the distance, flying upward in a straight line. It intersects the rainbow at two points. Choose the points where your drone intersects the parabola and create a table of at least four values for the function. Remember to include the two points of intersection in your table.
Analyze the two functions. Answer the following reflection questions in complete sentences.
What is the domain and range of the rainbow? Explain what the domain and range represent. Do all of the values make sense in this situation? Why or why not?
What are the x- and y-intercepts of the rainbow? Explain what each intercept represents.
Is the linear function you created positive or negative? Explain.
What are the solutions or solution to the system of equations created? Explain what it or they represent.
View More
7.I have a function and I can't figure out how to increase the circumference
private List CreateCircle(float
...
r3> CreateCircle(float zValue, int points)
{
var vertices = new List();
float degrees = 0f;
float degreeChange = twoPi / points;
for (var i = 0; i < points; i++)
{
// Adding to degrees changes the rotation of the circles - adding nothing creates a straight tube
float x = (2f * Mathf.PI) * Mathf.Sin(degrees);
float y = (2f * Mathf.PI) * Mathf.Sin(degrees);
//Mathf.Sin(degrees + (GlobalVariables.tunnelDepth/2))
//Mathf.Cos(degrees + (GlobalVariables.tunnelDepth / 3))
vertices.Add(new Vector3(x, y, zValue));
degrees += degreeChange;
}
return vertices;
}
View More