-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcauchypv.ocd
164 lines (154 loc) · 5.18 KB
/
cauchypv.ocd
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<CD xmlns="http://www.openmath.org/OpenMathCD">
<CDComment>
This document is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
The copyright holder grants you permission to redistribute this
document freely as a verbatim copy. Furthermore, the copyright
holder permits you to develop any derived work from this document
provided that the following conditions are met.
a) The derived work acknowledges the fact that it is derived from
this document, and maintains a prominent reference in the
work to the original source.
b) The fact that the derived work is not the original OpenMath
document is stated prominently in the derived work. Moreover if
both this document and the derived work are Content Dictionaries
then the derived work must include a different CDName element,
chosen so that it cannot be confused with any works adopted by
the OpenMath Society. In particular, if there is a Content
Dictionary Group whose name is, for example, `math' containing
Content Dictionaries named `math1', `math2' etc., then you should
not name a derived Content Dictionary `mathN' where N is an integer.
However you are free to name it `private_mathN' or some such. This
is because the names `mathN' may be used by the OpenMath Society
for future extensions.
c) The derived work is distributed under terms that allow the
compilation of derived works, but keep paragraphs a) and b)
intact. The simplest way to do this is to distribute the derived
work under the OpenMath license, but this is not a requirement.
If you have questions about this license please contact the OpenMath
society at http://www.openmath.org.
</CDComment>
<CDName>cauchypv</CDName>
<CDURL>http://www.openmath.org/cd/cauchypv.ocd</CDURL>
<CDReviewDate>2017-12-31</CDReviewDate>
<CDStatus>experimental</CDStatus>
<CDDate>2001-09-23</CDDate>
<CDVersion>1</CDVersion>
<CDRevision>1</CDRevision>
<CDComment>
Author: James Davenport
</CDComment>
<Description>
This CD extends calculus1 (compatible with the calculus operations
in Content MathML) with a Cauchy principal value definite integral.
</Description>
<CDDefinition>
<Name>defint</Name>
<Description>
This symbol is used to represent definite (Cauchy principal value)
integration of unary functions. It takes two arguments; the first being
the range (e.g. a set) of integration, and the second the function.
</Description>
<CMP> for all a,b | integral from a to b = -integral from b to a </CMP>
<FMP>
<OMOBJ xmlns="http://www.openmath.org/OpenMath">
<OMBIND>
<OMS cd="quant1" name="forall"/>
<OMBVAR>
<OMV name="a"/>
<OMV name="b"/>
</OMBVAR>
<OMA>
<OMS cd="relation1" name="eq"/>
<OMA>
<OMS cd="cauchypv" name="defint"/>
<OMA>
<OMS cd="interval1" name="interval"/>
<OMV name="a"/>
<OMV name="b"/>
</OMA>
<OMBIND>
<OMS cd="fns1" name="lambda"/>
<OMBVAR>
<OMV name="x"/>
</OMBVAR>
<OMA>
<OMV name="f"/>
<OMV name="x"/>
</OMA>
</OMBIND>
</OMA>
<OMA>
<OMS cd="arith1" name="unary_minus"/>
<OMA>
<OMS cd="cauchypv" name="defint"/>
<OMA>
<OMS cd="interval1" name="interval"/>
<OMV name="b"/>
<OMV name="a"/>
</OMA>
<OMBIND>
<OMS cd="fns1" name="lambda"/>
<OMBVAR>
<OMV name="x"/>
</OMBVAR>
<OMA>
<OMV name="f"/>
<OMV name="x"/>
</OMA>
</OMBIND>
</OMA>
</OMA>
</OMA>
</OMBIND>
</OMOBJ>
</FMP>
<Example>
An example: the definition of the exponential integral.
$$Ei(x)=\int_{-\infty}^x\frac{e^t}t dt\qquad(x>0)$$
<OMOBJ xmlns="http://www.openmath.org/OpenMath">
<OMA>
<OMS name="implies" cd="logic1"/>
<OMA>
<OMS name="gt" cd="relation1"/>
<OMV name="x"/>
<OMS name="zero" cd="alg1"/>
</OMA>
<OMA>
<OMS name="eq" cd="relation1"/>
<OMA>
<OMS name="Ei" cd="expint"/>
<OMV name="x"/>
</OMA>
<OMA>
<OMS name="defint" cd="cauchypv"/>
<OMA>
<OMS name="interval" cd="interval1"/>
<OMA>
<OMS name="unary_minus" cd="arith1"/>
<OMS name="infinity" cd="nums1"/>
</OMA>
<OMV name="x"/>
</OMA>
<OMBIND>
<OMV name="missing"/>
<OMBVAR>
<OMV name="t"/>
</OMBVAR>
<OMA>
<OMS name="divide" cd="arith1"/>
<OMA>
<OMS name="exp" cd="transc1"/>
<OMV name="t"/>
</OMA>
<OMV name="t"/>
</OMA>
</OMBIND>
</OMA>
</OMA>
</OMA>
</OMOBJ>
</Example>
</CDDefinition>
</CD>