Conceptual Compression Math Example 4

Follow the full solution, then compare it with the other examples linked below.

Example 4

medium
The notation fโˆ˜gf \circ g (function composition) compresses which idea? Evaluate (fโˆ˜g)(x)(f \circ g)(x) when f(x)=x2f(x) = x^2 and g(x)=x+1g(x) = x+1.

Solution

  1. 1
    Compressed idea: apply gg first, then apply ff to the result: (fโˆ˜g)(x)=f(g(x))(f \circ g)(x) = f(g(x)).
  2. 2
    Compute: g(x)=x+1g(x) = x+1. Then f(g(x))=f(x+1)=(x+1)2=x2+2x+1f(g(x)) = f(x+1) = (x+1)^2 = x^2+2x+1.

Answer

(fโˆ˜g)(x)=x2+2x+1(f \circ g)(x) = x^2+2x+1
Function composition notation fโˆ˜gf \circ g compresses the idea of sequential function application. The order matters: fโˆ˜gโ‰ gโˆ˜ff \circ g \ne g \circ f in general.

About Conceptual Compression

The cognitive process of packaging a multi-step procedure or idea into a single mental object that can be manipulated as a unit.

Learn more about Conceptual Compression โ†’

More Conceptual Compression Examples