#On the name of ALLAH and may the blessing and peace of Allah #be upon the Messenger of Allah Mohamed Salla Allahu Aliahi Wassalam. #Author : Fouad Teniou #Date : 06/07/10 #version :2.6 """ maclaurin_tan-1 is a function to compute tan-1(x) using maclaurin series and the interval of convergence is -1 <= x <= +1 sin(x) = x - x^3/3 + x^5/5 - x^7/7 ........... """ from math import * def error(number): """ Raises interval of convergence error.""" if number > 1 or number < -1 : raise TypeError,\ "\n