Skip to content

Instantly share code, notes, and snippets.

@DecisionNerd
Created May 2, 2013 03:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DecisionNerd/5499997 to your computer and use it in GitHub Desktop.
Save DecisionNerd/5499997 to your computer and use it in GitHub Desktop.
Python function for solving the polynomial substitution problems in Udacity College Algebra Lesson 2 Problem 7 (SJSU MA008)
def l2p7(x):
ans = (3+x)/(x**2.)
print ans
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment