From charlesreid1

No edit summary
Line 54: Line 54:


The study of functions continues in an undergraduate mathematics education with function analysis, split into real analysis and complex analysis. Engineering education focuses on the more practical aspects of functions - computing with software or calculators in the context of solving an applied problem.  
The study of functions continues in an undergraduate mathematics education with function analysis, split into real analysis and complex analysis. Engineering education focuses on the more practical aspects of functions - computing with software or calculators in the context of solving an applied problem.  
=Computer Science and Programming=
The basic idea of a function is shared in common between the computer science view of functions, the engineering view of functions, and the mathematical view of functions, but beyond that, things diverge pretty quickly.





Revision as of 01:06, 26 June 2017

Also see: Polynomials

Mathematics

Algebra/Precalculus: Topics in Functions

Intermediate algebra functions outline:

  • Introduction to functions
  • Function notation
  • Algebra and function composition
  • Slope and rate of change
  • Linear functions
  • (Later chapters cover other kinds of functions)

Precalculus outline:

  • sets and maps
  • function definitions
  • function notation
  • domain and range
  • rate of change
  • composition
  • transformation
  • absolute value
  • inverse functions

Connally Precalculus:

  • Chapter 1: Functions and Change
    • Functions and function notation
    • Rate of change
    • Linear functions
    • Formulas for linear functions
  • Geometric properties of linear functions
    • Fitting linear functions to data
  • Chapter 2: Functions
    • Input and output
    • Domain and range
    • Piecewise defined functions
    • Composite and inverse functions
    • Concavity
  • Quadratic, exponential, log, transformations, trig, trig identities, compositions, inverses, combinations, polynomials, rationals, vectors and matrices, sequences and series

More About Functions

Like Polynomials, functions start simple enough, but quickly get complicated, and can absorb hours, days, or even lifetimes of research. Functions are a way of mapping inputs to outputs, and they are immensely useful in using mathematics to describe, model, and understand the world.

Most college-level mathematics courses begin with functions, or arrive at the topic in short order. Functions provide the entire framework for precalculus, and when students hit calculus, it's all about continuous functions - the three conditions of continuity (calculus pop quiz: what are the three conditions of a function $ f(x) $ being continuous at a location $ x=a $?) being one of the first topics covered in calculus and one of the principal reasons calculus teachers spend so much time on limits.

(Answer: the three conditions for a function f(x) to be continuous at x = a are:

  • $ f(a) $ must exist
  • $ \lim_{x \rightarrow a+} f(x) = \lim_{x \rightarrow a-} f(x) = \lim_{x \rightarrow a} f(x) $
  • $ \lim_{x \rightarrow a} f(x) = f(a) $

These three criteria form the criteria for a continuous function. If a function is continuous, the limit of the function as x approaches a can be computed by simply evaluating the function at a.)

The study of functions continues in an undergraduate mathematics education with function analysis, split into real analysis and complex analysis. Engineering education focuses on the more practical aspects of functions - computing with software or calculators in the context of solving an applied problem.