-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathasymp1.ocd
577 lines (549 loc) · 15 KB
/
asymp1.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
<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>asymp1</CDName>
<CDURL>http://www.openmath.org/cd/asymp1.ocd</CDURL>
<CDDate>1999-10-19</CDDate>
<CDReviewDate>2017-12-31</CDReviewDate>
<CDVersion>2</CDVersion>
<CDRevision>1</CDRevision>
<CDComment>
Author: Bill Naylor
</CDComment>
<CDStatus>experimental</CDStatus>
<Description>
This CD provides a representation of various asymptotic set constructors (O, \Omega, etc.) The constructors represent sets of functions : R -> R.
</Description>
<CDDefinition>
<Name>O</Name>
<Description>
The O symbol represents a unary function which constructs a set of certain
functions of type reals to reals. The condition f(n)=O(g(n))
is intended to express an upper bound condition on f.
</Description>
<CMP>
O(g) =
{ f:reals -> reals | exists c in positive reals and M in the naturals
such that
forall n geq M. |f(n)| leq c*g(n)}
</CMP>
<FMP>
<OMOBJ xmlns="http://www.openmath.org/OpenMath">
<OMA>
<OMS cd = "relation1" name="eq"/>
<OMA>
<OMS cd ="asymp1" name="O"/>
<OMV name="g"/>
</OMA>
<OMA>
<OMS cd="set1" name="suchthat"/>
<OMA>
<OMS cd="setname3" name="function_set"/>
<OMS cd="setname1" name="R"/>
<OMS cd="setname1" name="R"/>
</OMA>
<OMBIND>
<OMS cd="fns1" name="lambda"/>
<OMBVAR>
<OMV name="f"/>
</OMBVAR>
<OMBIND>
<OMS cd="quant1" name="exists"/>
<OMBVAR>
<OMV name="c"/>
<OMV name="M"/>
</OMBVAR>
<OMA>
<OMS cd="logic1" name="and"/>
<OMA>
<OMS cd="set1" name="in"/>
<OMV name="c"/>
<OMS cd="setname1" name="R"/>
</OMA>
<OMA>
<OMS cd="relation1" name="gt"/>
<OMV name="c"/>
<OMS cd="alg1" name="zero"/>
</OMA>
<OMA>
<OMS cd="set1" name="in"/>
<OMV name="M"/>
<OMS cd="setname1" name="N"/>
</OMA>
<OMBIND>
<OMS cd="quant1" name="forall"/>
<OMBVAR>
<OMV name="n"/>
</OMBVAR>
<OMA>
<OMS cd="logic1" name="implies"/>
<OMA>
<OMS cd="logic1" name="and"/>
<OMA>
<OMS cd="set1" name="in"/>
<OMV name="n"/>
<OMS cd="setname1" name="N"/>
</OMA>
<OMA>
<OMS cd = "relation1" name="geq"/>
<OMV name="n"/>
<OMV name="M"/>
</OMA>
</OMA>
<OMA>
<OMS cd = "relation1" name="leq"/>
<OMA>
<OMS cd = "arith1" name = "abs"/>
<OMA>
<OMV name="f"/>
<OMV name="n"/>
</OMA>
</OMA>
<OMA>
<OMS cd="arith1" name="times"/>
<OMV name="c"/>
<OMA>
<OMV name="g"/>
<OMV name="n"/>
</OMA>
</OMA>
</OMA>
</OMA>
</OMBIND>
</OMA>
</OMBIND>
</OMBIND>
</OMA>
</OMA>
</OMOBJ>
</FMP>
</CDDefinition>
<CDDefinition>
<Name>o</Name>
<Description>
The o symbol represents a unary function which constructs a set
of certain functions of type reals to positive reals. The condition
f(n) = o(g(n)) is intended to express a lower bouund condition
on f. Formally we say that f(n) = o(g(n)) if and only if the
limit as n tends to infinity of f(n)/g(n) exists and is equal to 0.
</Description>
<CMP>
o(g) =
{f : reals -> reals | the limit as x tends to infinity of f(x)/g(x) is 0}
</CMP>
<FMP>
<OMOBJ xmlns="http://www.openmath.org/OpenMath">
<OMA>
<OMS cd="relation1" name="eq"/>
<OMA>
<OMS cd="asymp1" name="o"/>
<OMV name="g"/>
</OMA>
<OMA>
<OMS cd="set1" name="suchthat"/>
<OMA>
<OMS cd="setname3" name="function_set"/>
<OMS cd="setname1" name="R"/>
<OMS cd="setname1" name="R"/>
</OMA>
<OMBIND>
<OMS cd="fns1" name="lambda"/>
<OMBVAR>
<OMV name="f"/>
</OMBVAR>
<OMA>
<OMS cd="relation1" name="eq"/>
<OMA>
<OMS cd="limit1" name="limit"/>
<OMS cd="nums1" name="infinity"/>
<OMS cd="limit1" name="below"/>
<OMBIND>
<OMS cd="fns1" name="lambda"/>
<OMBVAR>
<OMV name="x"/>
</OMBVAR>
<OMA>
<OMS cd="arith1" name="divide"/>
<OMA>
<OMV name="f"/>
<OMV name="x"/>
</OMA>
<OMA>
<OMV name="g"/>
<OMV name="x"/>
</OMA>
</OMA>
</OMBIND>
</OMA>
<OMS cd="alg1" name="zero"/>
</OMA>
</OMBIND>
</OMA>
</OMA>
</OMOBJ>
</FMP>
</CDDefinition>
<CDDefinition>
<Name>theta</Name>
<Description>
The theta symbol represents a unary function which constructs a set
of certain functions of type reals to positive reals. The theta
symbol represents a set of functions which all have the same 'rate of
growth'. Formally we say that f(x) = theta(g(x)) if and only if
there are constants c_1 not= 0 and c_2 not= 0 and x_0 such that for
all x > x_0 it is true that c_1*g(x) < f(x) < c_2*g(x).
</Description>
<CMP>
f(x) = theta(g(x)) if and only if
there are constants c_1 not= 0 and c_2 not= 0 and x_0 such that for
all x > x_0 it is true that c_1*g(x) < f(x) < c_2*g(x)
</CMP>
<FMP>
<OMOBJ xmlns="http://www.openmath.org/OpenMath">
<OMA>
<OMS cd="relation1" name="eq"/>
<OMA>
<OMS cd="asymp1" name="theta"/>
<OMV name="g"/>
</OMA>
<OMA>
<OMS cd="set1" name="suchthat"/>
<OMA>
<OMS cd="setname3" name="function_set"/>
<OMS cd="setname1" name="R"/>
<OMS cd="setname1" name="R"/>
</OMA>
<OMBIND>
<OMS cd="fns1" name="lambda"/>
<OMBVAR>
<OMV name="f"/>
</OMBVAR>
<OMBIND>
<OMS cd="quant1" name="exists"/>
<OMBVAR>
<OMV name="c_1"/>
<OMV name="c_2"/>
<OMV name="x_0"/>
</OMBVAR>
<OMA>
<OMS cd="logic1" name="and"/>
<OMA>
<OMS cd="relation1" name="neq"/>
<OMV name="c_1"/>
<OMS cd="alg1" name="zero"/>
</OMA>
<OMA>
<OMS cd="relation1" name="neq"/>
<OMV name="c_2"/>
<OMS cd="alg1" name="zero"/>
</OMA>
<OMBIND>
<OMS cd="quant1" name="forall"/>
<OMBVAR>
<OMV name="x"/>
</OMBVAR>
<OMA>
<OMS cd="logic1" name="and"/>
<OMA>
<OMS cd="relation1" name="gt"/>
<OMV name="x"/>
<OMV name="x_0"/>
</OMA>
<OMA>
<OMS cd="relation1" name="lt"/>
<OMA>
<OMS cd="arith1" name="times"/>
<OMV name="c_1"/>
<OMA>
<OMV name="g"/>
<OMV name="x"/>
</OMA>
</OMA>
<OMA>
<OMV name="f"/>
<OMV name="x"/>
</OMA>
</OMA>
<OMA>
<OMS cd="relation1" name="lt"/>
<OMA>
<OMV name="f"/>
<OMV name="x"/>
</OMA>
<OMA>
<OMS cd="arith1" name="times"/>
<OMV name="c_2"/>
<OMA>
<OMV name="g"/>
<OMV name="x"/>
</OMA>
</OMA>
</OMA>
</OMA>
</OMBIND>
</OMA>
</OMBIND>
</OMBIND>
</OMA>
</OMA>
</OMOBJ>
</FMP>
</CDDefinition>
<CDDefinition>
<Name>asymptotic</Name>
<Description>
The asymptotic symbol represents a binary relation between two
functions of type reals to reals. The asymptotic relation between two
functions returns true if the two functions have the same rate of
growth and more precisely there ratio approaches 1 as the variable
approaches infinity. Formally we say that f(x) is asymptotic to g(x)
if and only if the limit as x tends to infinity of f(x)/g(x) = 1.
</Description>
<CMP>
f(x) is
asymptotic g(x) if and only if the limit as x tends to infinity of
f(x)/g(x) = 1
</CMP>
<FMP>
<OMOBJ xmlns="http://www.openmath.org/OpenMath">
<OMA>
<OMS cd="logic1" name="equivalent"/>
<OMA>
<OMS cd="asymp1" name="asymptotic"/>
<OMV name="f"/>
<OMV name="g"/>
</OMA>
<OMA>
<OMS cd="relation1" name="eq"/>
<OMA>
<OMS cd="limit1" name="limit"/>
<OMS cd="nums1" name="infinity"/>
<OMS cd="limit1" name="below"/>
<OMBIND>
<OMS cd="fns1" name="lambda"/>
<OMBVAR>
<OMV name="x"/>
</OMBVAR>
<OMA>
<OMS cd="arith1" name="divide"/>
<OMA>
<OMV name="f"/>
<OMV name="x"/>
</OMA>
<OMA>
<OMV name="g"/>
<OMV name="x"/>
</OMA>
</OMA>
</OMBIND>
</OMA>
<OMS cd="alg1" name="one"/>
</OMA>
</OMA>
</OMOBJ>
</FMP>
</CDDefinition>
<CDDefinition>
<Name>omega</Name>
<Description>
The omega symbol represents a unary function which constructs a set
of certain functions of type reals to positive reals. The omega
symbol represents a set of functions such that for any function in
the set omega(g(x)), f(x); it is not true that f(x) is in
o(g(x)). Formally we say that f(x) = omega(g(x)) if and only
if there is an epsilon > 0 and an infinite sequence x_1, x_2, x_3,
... such that for all j then abs(f(x_j)) > epsilon * g(x_j).
</Description>
<CMP>
f(x) is omega(g(x)) if and only if
it is not true that f(x) is o(g(x))
</CMP>
<FMP>
<OMOBJ xmlns="http://www.openmath.org/OpenMath">
<OMA>
<OMS cd="relation1" name="eq"/>
<OMA>
<OMS cd="asymp1" name="omega"/>
<OMV name="g"/>
</OMA>
<OMA>
<OMS cd="set1" name="suchthat"/>
<OMA>
<OMS cd="setname3" name="function_set"/>
<OMS cd="setname1" name="R"/>
<OMS cd="setname1" name="R"/>
</OMA>
<OMBIND>
<OMS cd="fns1" name="lambda"/>
<OMBVAR>
<OMV name="f"/>
</OMBVAR>
<OMA>
<OMS cd="logic1" name="not"/>
<OMA>
<OMS cd="set1" name="in"/>
<OMA>
<OMV name="f"/>
<OMV name="x"/>
</OMA>
<OMA>
<OMS cd="asymp1" name="o"/>
<OMV name="g"/>
</OMA>
</OMA>
</OMA>
</OMBIND>
</OMA>
</OMA>
</OMOBJ>
</FMP>
<CMP>
f(x) = omega(g(x)) if and only if there is an epsilon > 0 and an
infinite sequence x_1, x_2, x_3, ... such that for all j then
abs(f(x_j)) > epsilon * g(x_j).
</CMP>
<FMP>
<OMOBJ xmlns="http://www.openmath.org/OpenMath">
<OMA>
<OMS cd="logic1" name="equivalent"/>
<OMA>
<OMS cd="set1" name="in"/>
<OMV name="f"/>
<OMA>
<OMS cd="asymp1" name="omega"/>
<OMV name="g"/>
</OMA>
</OMA>
<OMBIND>
<OMS cd="quant1" name="exists"/>
<OMBVAR>
<OMV name="epsilon"/>
<OMV name="seq"/>
</OMBVAR>
<OMA>
<OMS cd="logic1" name="and"/>
<OMA>
<OMS cd="relation1" name="gt"/>
<OMV name="epsilon"/>
<OMS cd="alg1" name="zero"/>
</OMA>
<OMBIND>
<OMS cd="quant1" name="forall"/>
<OMBVAR>
<OMV name="j"/>
</OMBVAR>
<OMA>
<OMS cd="relation1" name="gt"/>
<OMA>
<OMS cd="arith1" name="abs"/>
<OMA>
<OMV name="f"/>
<OMA>
<OMS cd="linalg1" name="vector_selector"/>
<OMV name="j"/>
<OMV name="seq"/>
</OMA>
</OMA>
</OMA>
<OMA>
<OMS cd="arith1" name="times"/>
<OMV name="epsilon"/>
<OMA>
<OMV name="g"/>
<OMA>
<OMS cd="linalg1" name="vector_selector"/>
<OMV name="j"/>
<OMV name="seq"/>
</OMA>
</OMA>
</OMA>
</OMA>
</OMBIND>
</OMA>
</OMBIND>
</OMA>
</OMOBJ>
</FMP>
</CDDefinition>
<CDDefinition>
<Name>Omega</Name>
<Description>
The Omega symbol represents a unary function which constructs a set
of certain functions of type reals to positive reals. The Omega
symbol represents a set of functions such that for any function in
the set Omega(g(x)), f(x); it is not true that f(x) is in
O(g(x)).
</Description>
<CMP>
f(x) is Omega(g(x)) if and only if
it is not true that f(x) is O(g(x))
</CMP>
<FMP>
<OMOBJ xmlns="http://www.openmath.org/OpenMath">
<OMA>
<OMS cd="relation1" name="eq"/>
<OMA>
<OMS cd="asymp1" name="Omega"/>
<OMV name="g"/>
</OMA>
<OMA>
<OMS cd="set1" name="suchthat"/>
<OMA>
<OMS cd="setname3" name="function_set"/>
<OMS cd="setname1" name="R"/>
<OMS cd="setname1" name="R"/>
</OMA>
<OMBIND>
<OMS cd="fns1" name="lambda"/>
<OMBVAR>
<OMV name="f"/>
</OMBVAR>
<OMA>
<OMS cd="logic1" name="not"/>
<OMA>
<OMS cd="set1" name="in"/>
<OMA>
<OMV name="f"/>
<OMV name="x"/>
</OMA>
<OMA>
<OMS cd="asymp1" name="O"/>
<OMV name="g"/>
</OMA>
</OMA>
</OMA>
</OMBIND>
</OMA>
</OMA>
</OMOBJ>
</FMP>
</CDDefinition>
</CD>