aboutsummaryrefslogtreecommitdiff
path: root/ic-reals-6.3/math-lib/secant.c
blob: 72615461351c9bedfe508ad706b33dc4eea39b53 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
 * Copyright (C) 2000, Imperial College
 *
 * This file is part of the Imperial College Exact Real Arithmetic Library.
 * See the copyright notice included in the distribution for conditions
 * of use.
 */

#include <stdio.h>
#include "real.h"

/*
 * These functions should probably be broken into separate files.
 */

/*
 * sec x = 1 / (cos x)
 */
Real
sec_R(Real x)
{
	return div_Int_R(1, cos_R(x));
}

Real
sec_QInt(int a, int b)
{
	return div_Int_R(1, cos_QInt(a, b));
}

Real
sec_QZ(mpz_t a, mpz_t b)
{
	return div_Int_R(1, cos_QZ(a, b));
}

/*
 * asec x = acos (1/x)
 */
Real
asec_R(Real x)
{
	return acos_R(div_Int_R(1, x));
}

Real
asec_QInt(int a, int b)
{
	return acos_QInt(b, a);
}

Real
asec_QZ(mpz_t a, mpz_t b)
{
	return acos_QZ(b, a);
}

/*
 * sech x = 1 / (cosh x)
 */
Real
sech_R(Real x)
{
	return div_Int_R(1, cosh_R(x));
}

Real
sech_QInt(int a, int b)
{
	return div_Int_R(1, cosh_QInt(a, b));
}

Real
sech_QZ(mpz_t a, mpz_t b)
{
	return div_Int_R(1, cosh_QZ(a, b));
}

/*
 * asech x = acosh (1/x)
 */
Real
asech_R(Real x)
{
	return acosh_R(div_Int_R(1, x));
}

Real
asech_QInt(int a, int b)
{
	return acosh_QInt(b, a);
}

Real
asech_QZ(mpz_t a, mpz_t b)
{
	return acosh_QZ(b, a);
}