Integrated_Algebra // Mod_09

FUNCTIONS

Input, Process, Output. Transforming raw algebra into predictable mathematical machines and mapping engines.

01 // The Machine

A function is a strict relationship rule: every input is allowed to have exactly one output. It is a completely predictable machine. If you put in the number 2, you must get the exact same answer every single time.

Domain
The entire set of valid Inputs (xx). The fuel for the machine.
Range
The entire set of possible Outputs (yy or f(x)f(x)). The result.
Input (x)(x)
f(x)f(x)
Output (y)(y)

02 // The Routing Logic

The Mapping Engine

Test Input (x)2
f(2)2
Domain
Inputs (x)
Range
Outputs f(x)
-3-2-10123-2-127

03 // Validation Protocol

Vertical Line Test

Status: PASS

The vertical scanner hits the graph exactly once at any given time. Every xx has a unique yy. It is a Function.

Vertical Line Test

Status: FAIL

The vertical scanner hits the graph at two points simultaneously. A single xx cannot yield two different yy values.

Function Inception

Functions can be stacked. By feeding the completed output of one machine directly into the input of a second machine, we create a Composite Function.

f(
g(x)
)
Input xx
Execute g(x)g(x)
Pass Result
Execute f(x)f(x)

Machine Logic Mastered

You are ready to command continuous logic.

Next: Exp & Logs