Skip to content

Commit be18dc3

Browse files
committed
added review01-04 to chapter13
1 parent 062d5f2 commit be18dc3

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

Chapter13/review/01.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
A function of one argument is a function that takes one parameter.
2+
Whether it does something with that argument is up to the function.
3+
4+
For example, the horizontal line function discards the given argument,
5+
by not even naming the variable, only the type of it, and returns one for every value given;
6+
however the sloping line returns the argument multiplied by 0.5.
7+
8+
The graphics type, Function, takes a function that takes one argument of type double, and returns double.
9+
10+
We use continuous lines for visualizing functions of one argument.

Chapter13/review/02.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
We would use a continuous line for representing data when one value was somehow a function of an other.
2+
3+
We would use discrete points if the values were not functions of each other.

Chapter13/review/03.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The function y=mx+b defines a slope.

Chapter13/review/04.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
A parabola is a graph of the quadratic formula: y=ax^2+bx+c.
2+
It is approximately U shaped, symmetrical to the y-axis, and can also point downwards.
3+
It has a minimum or maximum point, from which in each direction, its value grows or lessens.
4+
Its curve's slope is increasing or decreasing as we get further from its min/max point.

0 commit comments

Comments
 (0)