aboutsummaryrefslogtreecommitdiff
path: root/ic-reals-6.3/math-lib/cotangent.c
blob: de6ec442686e50e26b5ac1602cfa38088efdd496 (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.
 */

/*
 * cotan x = 1 / (tan x)
 */
Real
cotan_R(Real x)
{
	return div_Int_R(1, tan_R(x));
}

Real
cotan_QInt(int a, int b)
{
	return div_Int_R(1, tan_QInt(a, b));
}

Real
cotan_QZ(mpz_t a, mpz_t b)
{
	return div_Int_R(1, tan_QZ(a, b));
}

/*
 * acotan x = atan (1/x)
 */
Real
acotan_R(Real x)
{
	return atan_R(div_Int_R(1, x));
}

Real
acotan_QInt(int a, int b)
{
	return atan_QInt(b, a);
}

Real
acotan_QZ(mpz_t a, mpz_t b)
{
	return atan_QZ(b, a);
}

/*
 * cotanh x = 1 / (tanh x)
 */
Real
cotanh_R(Real x)
{
	return div_Int_R(1, tanh_R(x));
}

Real
cotanh_QInt(int a, int b)
{
	return div_Int_R(1, tanh_QInt(a, b));
}

Real
cotanh_QZ(mpz_t a, mpz_t b)
{
	return div_Int_R(1, tanh_QZ(a, b));
}

/*
 * acotanh x = atanh (1/x)
 */
Real
acotanh_R(Real x)
{
	return atanh_R(div_Int_R(1, x));
}

Real
acotanh_QInt(int a, int b)
{
	return atanh_QInt(b, a);
}

Real
acotanh_QZ(mpz_t a, mpz_t b)
{
	return atanh_QZ(b, a);
}