Welcome, guest | Sign In | My Account | Store | Cart

C. Maclaurin. A Scottish mathematician gained his master degree at age 17, and his major mathematics' work arise from his special knowledge in Newton's ideas and the formulation of Newton's methods.

However, C. Maclaurin also contributed to the astronomy science and helped to improve maps and invented some mechanical devices .

My mathematics python's programs is a set of Maclaurin's series to compute some of the most important functions in calculus.

Though, the computation of an infinite sum which give the value of a function in terms of the derivatives evaluated at a special case where x0 = 0,in contrast with Taylor's series.

Natural logarithms are used to compute inverse hyperbolic functions.

Python, 52 lines
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#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 : 21/09/10
#version :2.6

"""
maclaurin_cosh-1 is a function to compute cosh-1(x) using maclaurin series
and the interval of convergence is -1 < x < +1 and -inf < y < +inf
cosh-1(y) = ln(y + sqrt(y**2 -1) and y = ln(1+x/1-x)
cosh-1(y) = 2(x + x^3/3 + x^5/5 + x^7/7 ......)
"""

from math import *

def maclaurin_cosh_inverse(value, k):
    """
    Compute maclaurin's series approximation for cosh-1(value).
    """
 
    global first_value    
    first_value = 0.0
    
    #attempt to Approximate cosh-1(x) for a given value    
    try:
        value_y = value + sqrt(value**2-1)
        value_x = (value_y -1)/float(value_y + 1)
        for item in xrange(1,k,2):
            next_value = value_x **item/item
            first_value += next_value

        return 2*(first_value)
    
    #Raise TypeError if input is not a number   
    except TypeError:
        print 'Please enter an integer or a float value'

if __name__ == "__main__":
    
    maclaurin_cosh_inverse1 = maclaurin_cosh_inverse(3,100)
    print maclaurin_cosh_inverse1
    maclaurin_cosh_inverse2 = maclaurin_cosh_inverse(5,100)
    print maclaurin_cosh_inverse2
    maclaurin_cosh_inverse3 = maclaurin_cosh_inverse(7,100)
    print maclaurin_cosh_inverse3
    
#####################################################################

#FT python "C:
#1.76274717404
#2.29243166949
#2.63391575704

2 comments

Fouad Teniou (author) 13 years, 6 months ago  # | flag

My profile,poems, photos,and design's links

https://acrobat.com/#d=aEjxtq78QkGKUxa*UprkZQ

Fouad Teniou (author) 12 years, 8 months ago  # | flag

A switch to C# and a new link

http://archive.msdn.microsoft.com/fouadteniou