def specialFun3(x):
'''(-2.*x + 3.*sin(x) - x*cos(x))/(x*x*x*x*x)'''
if (abs(x) > 1e-2):
return (-2.*x + 3.*math.sin(x) - x*math.cos(x)) / (x*x*x*x*x)
else:
return - 1./60. + x*x / 1260. - x*x*x*x / 60480.