3.2 Analyzing Function Tables & Formulating Rules

Key Takeaways

  • Function tables express paired input-output data (x, y), where identifying mathematical patterns allows formulation of explicit algebraic rules.
  • A constant first difference (Delta y) between consecutive, equally-spaced x-values signifies a linear relationship governed by y = mx + b.
  • A constant second difference (Delta^2 y) indicates a non-linear quadratic relationship of the form y = ax^2 + bx + c.
  • In electrical systems, linear function tables model constant consumption rates, while quadratic function tables model Joule heating power losses (P = I^2 R).
  • Conduit fill and wire sizing tables rely on functional area relationships (A = pi r^2) to enforce National Electrical Code (NEC) safety fill limits.
Last updated: August 2026

3.2 Analyzing Function Tables & Formulating Rules

Quick Summary: Function tables present paired data points $(x, y)$ that reveal underlying mathematical relationships. Electricians and estimators must analyze input-output tables to deduce explicit functional rules ($y = f(x)$). By calculating first differences ($\Delta y$), candidates can identify linear relationships ($y = mx + b$). If first differences vary but second differences ($\Delta^2 y$) remain constant, the function is non-linear and quadratic ($y = ax^2 + bx + c$). These techniques are directly applied in trade calculations such as conduit fill capacity, motor load estimation, and transformer power loss analysis.


Structure & Interpretation of Function Tables

An input-output table (or function table) is a tabular representation of paired numerical data. The left column (or top row) represents the independent variable $x$ (inputs), while the right column (or bottom row) represents the dependent variable $y = f(x)$ (outputs).

Input ($x$)Output ($y$)Ordered Pair $(x, y)$
$x_1$$y_1$$(x_1, y_1)$
$x_2$$y_2$$(x_2, y_2)$
$x_3$$y_3$$(x_3, y_3)$
$x_4$$y_4$$(x_4, y_4)$

Prerequisite Check: Consistent Input Intervals ($\Delta x$)

Before calculating output differences, always verify that the input values $x$ increase by a constant step size $\Delta x = x_{k+1} - x_k$. In standard EIAT test items, $x$ typically increments by $+1$ or $+2$. If the input values do not increment uniformly, adjustments must be made when calculating slopes and rates of change.


Linear Function Tables & First Differences ($\Delta y$)

A function table represents a linear relationship if a constant change in the input variable $x$ produces a constant change in the output variable $y$.

The First Difference Theorem

The first difference ($\Delta y$) is calculated by subtracting each output value from the subsequent output value: Δyk=yk+1yk\Delta y_k = y_{k+1} - y_k

THEOREM: If the input values $x$ increment by a constant step size $\Delta x = 1$, and the first differences $\Delta y$ are constant, then the function is linear and can be modeled by the slope-intercept equation: y=mx+by = mx + b

Where:

  • $m$ is the slope (rate of change), calculated as $m = \frac{\Delta y}{\Delta x}$.
  • $b$ is the $y$-intercept (the output value $y$ when input $x = 0$).

Step-by-Step Walkthrough: Formulating a Linear Rule

Consider the following input-output table:

Input ($x$)Output ($y$)
$1$$9$
$2$$14$
$3$$19$
$4$$24$

Step 1: Check Input Step Size ($\Delta x$)

Δx=21=1,32=1,43=1\Delta x = 2 - 1 = 1, \quad 3 - 2 = 1, \quad 4 - 3 = 1 The inputs increase by a uniform step size of $\Delta x = 1$.

Step 2: Calculate First Differences ($\Delta y$)

  • From $y_1 = 9$ to $y_2 = 14$: $\Delta y = 14 - 9 = +5$
  • From $y_2 = 14$ to $y_3 = 19$: $\Delta y = 19 - 14 = +5$
  • From $y_3 = 19$ to $y_4 = 24$: $\Delta y = 24 - 19 = +5$

Because the first difference is constant ($\Delta y = 5$), the relationship is strictly linear, with slope $m = \frac{5}{1} = 5$.

Step 3: Determine the $y$-Intercept ($b$)

To find $b$, substitute the slope $m = 5$ and any known point $(x, y)$, such as $(1, 9)$, into the linear equation $y = mx + b$: 9=5(1)+b9 = 5(1) + b 9=5+b    b=95=49 = 5 + b \implies b = 9 - 5 = 4

Alternative Extrapolation Technique: Step backward in the table to $x = 0$. Since $y$ decreases by $5$ for each step left: y(0)=y(1)5=95=4    b=4y(0) = y(1) - 5 = 9 - 5 = 4 \implies b = 4

Step 4: Write the Final Function Rule

y=5x+4y = 5x + 4


Quadratic Function Tables & Second Differences ($\Delta^2 y$)

When the first differences of a function table are not constant, the relationship is non-linear. The next analytical step is to compute the second differences.

The Second Difference Method

The second difference ($\Delta^2 y$) represents the change between consecutive first differences: Δ2yk=Δyk+1Δyk\Delta^2 y_k = \Delta y_{k+1} - \Delta y_k

THEOREM: If the input step size is $\Delta x = 1$, and the first differences vary linearly while the second differences $\Delta^2 y$ are constant, the table represents a quadratic function: y=ax2+bx+cy = ax^2 + bx + c

Where:

  • The leading coefficient is related to the constant second difference by: a=Δ2y2a = \frac{\Delta^2 y}{2}

Step-by-Step Walkthrough: Formulating a Quadratic Rule

An electrician measures transformer power loss $P$ (in Watts) at different current levels $I$ (in Amperes) and records the data:

Current ($I$)Power Loss ($P$)First Difference ($\Delta P$)Second Difference ($\Delta^2 P$)
$1$$3$
$2$$9$$9 - 3 = 6$
$3$$19$$19 - 9 = 10$$10 - 6 = 4$
$4$$33$$33 - 19 = 14$$14 - 10 = 4$

Step 1: Analyze Differences

  • First Differences ($\Delta P$): $6, 10, 14$ (Varying, so not linear).
  • Second Differences ($\Delta^2 P$): $10 - 6 = 4$ and $14 - 10 = 4$ (Constant!).

Since the second difference is constant at $\Delta^2 P = 4$, the function is quadratic: $P(I) = aI^2 + bI + c$.

Step 2: Determine Leading Coefficient $a$

a=Δ2P2=42=2a = \frac{\Delta^2 P}{2} = \frac{4}{2} = 2

Thus, the quadratic rule takes the form: P(I)=2I2+bI+cP(I) = 2I^2 + bI + c

Step 3: Solve for Coefficients $b$ and $c$

Substitute two known points into the general equation:

  1. Using point $(1, 3)$: 3=2(1)2+b(1)+c    3=2+b+c    b+c=13 = 2(1)^2 + b(1) + c \implies 3 = 2 + b + c \implies b + c = 1

  2. Using point $(2, 9)$: 9=2(2)2+b(2)+c    9=8+2b+c    2b+c=19 = 2(2)^2 + b(2) + c \implies 9 = 8 + 2b + c \implies 2b + c = 1

  3. Subtract Equation 1 from Equation 2: (2b+c)(b+c)=11    b=0(2b + c) - (b + c) = 1 - 1 \implies b = 0

  4. Substitute $b = 0$ back into $b + c = 1$: 0+c=1    c=10 + c = 1 \implies c = 1

Step 4: Write and Verify the Final Function Rule

P(I)=2I2+1P(I) = 2I^2 + 1

Verification Check:

  • For $I = 1$: $P = 2(1)^2 + 1 = 3$ $\checkmark$
  • For $I = 2$: $P = 2(2)^2 + 1 = 9$ $\checkmark$
  • For $I = 3$: $P = 2(3)^2 + 1 = 19$ $\checkmark$
  • For $I = 4$: $P = 2(4)^2 + 1 = 33$ $\checkmark$

Non-Linear Table Patterns: Exponential & Inverse Relationships

Not all function tables are polynomial (linear or quadratic). EIAT candidates should recognize two additional non-linear table behaviors:

1. Exponential Functions ($y = a \cdot b^x$)

In an exponential table, as $x$ increases by $+1$, the output values $y$ do not change by adding a constant difference; instead, they change by multiplying by a constant ratio $r = \frac{y_{k+1}}{y_k}$.

  • Example Table: $(1, 3), (2, 6), (3, 12), (4, 24)$.
  • Ratios: $\frac{6}{3} = 2$, $\frac{12}{6} = 2$, $\frac{24}{12} = 2$.
  • Functional Rule: $y = 1.5 \cdot 2^x$.

2. Inverse Proportional Functions ($y = \frac{k}{x}$)

In an inverse variation table, as $x$ increases, $y$ decreases such that the product of $x$ and $y$ remains constant ($x \cdot y = k$).

  • Example Table (Ohm's Law $I = \frac{V}{R}$ at constant $V = 120\text{ V}$): $(10, 12), (20, 6), (30, 4), (40, 3)$.
  • Products: $10 \times 12 = 120$, $20 \times 6 = 120$, $30 \times 4 = 120$.
  • Functional Rule: $y = \frac{120}{x}$.

Trade Applications: Conduit Fill & Estimating Rules

Analyzing function tables is a daily operational skill for electricians interpreting NEC code tables and job site estimators predicting resource consumption.

Application 1: Non-Uniform Step Sizes in Generator Fuel Tables

An electrical job site estimator collects operational data for a prime power diesel generator, recording fuel consumption $F$ (in gallons) against total running time $h$ (in hours):

Operating Hours ($h$)Fuel Consumed ($F$ gal)
$2$$10$
$4$$18$
$6$$26$

NOTICE: The input step size is $\Delta h = 4 - 2 = 2$ hours (not $1$ hour!).

Step 1: Calculate the Rate of Consumption (Slope $m$)

m=ΔFΔh=181042=82=4 gallons per hourm = \frac{\Delta F}{\Delta h} = \frac{18 - 10}{4 - 2} = \frac{8}{2} = 4\text{ gallons per hour}

Step 2: Formulate the Linear Function Rule

Using $F(h) = mh + b$, substitute $m = 4$ and point $(2, 10)$: 10=4(2)+b    10=8+b    b=210 = 4(2) + b \implies 10 = 8 + b \implies b = 2

Thus, the explicit function rule is: F(h)=4h+2F(h) = 4h + 2

Step 3: Project Future Consumption ($F(15)$)

To calculate total fuel required for a continuous 15-hour generator run: F(15)=4(15)+2=60+2=62 gallonsF(15) = 4(15) + 2 = 60 + 2 = 62\text{ gallons}


Application 2: Conduit Cross-Sectional Area Fill Tables

Chapter 9, Table 4 of the National Electrical Code (NEC) specifies maximum conduit fill capacities based on total conductor cross-sectional area. Because conductor cross-sectional area scales quadratically with diameter ($A = \frac{\pi d^2}{4}$), doubling conductor diameter increases conduit space consumption by a factor of $2^2 = 4$.

Electricians who master table difference techniques can rapidly verify code compliance, extrapolate missing table entries, and formulate accurate estimating rules on the job site and EIAT exam.

Test Your Knowledge

A function table lists $(x, y)$ pairs: $(1, 9), (2, 14), (3, 19), (4, 24)$. What equation describes this function?

A
B
C
D
Test Your Knowledge

An electrician observes data for transformer power loss $P$ versus current $I$: $(1, 3), (2, 9), (3, 19), (4, 33)$. What quadratic function models this relationship?

A
B
C
D
Test Your Knowledge

An electrical estimator uses a table listing generator fuel consumption $F$ (gallons) versus operating hours $h$: $(2, 10), (4, 18), (6, 26)$. Find the function rule and compute $F(15)$.

A
B
C
D