OpenMath Content Dictionary: transc2
Canonical URL:
http://www.openmath.org/cd/transc2.ocd
CD Base:
http://www.openmath.org/cd
CD File:
transc2.ocd
CD as XML Encoded OpenMath:
transc2.omcd
Defines:
arctan , unwind
Date:
2004-03-30
Version:
2
(Revision 1)
Review Date:
2017-12-31
Status:
experimental
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 .
Author: OpenMath Consortium (James Davenport)
SourceURL: https://github.com/OpenMath/CDs
This CD holds the definition of a two-argument version of arctan,
useful for defining the argument of a complex number, and equivalent
to Fortran's ATAN2 function.
It also holds a definition of the unwinding number, useful for writing
correct relationships between elementary functions.
Role:
application
Description:
This symbol represents the two-argument arctan function as in Fortran's
ATAN2. arctan(x,y) is a value of arctan(y/x). For real x,y arctan(x,y) is
positive when y is positive, negative when y is negative. If y is zero, the
result is 0 if x is positive, and $\pi$ if x is negative. If x is zero, the
result has absolute value $\pi/2$.
Commented Mathematical property (CMP):
x not 0 implies tan(arctan(y,x))=y/x
Formal Mathematical property (FMP):
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS name="implies" cd="logic1"/>
<OMA>
<OMS name="neq" cd="relation1"/>
<OMV name="x"/>
<OMS name="zero" cd="alg1"/>
</OMA>
<OMA>
<OMS name="eq" cd="relation1"/>
<OMA>
<OMS name="tan" cd="transc1"/>
<OMA>
<OMS name="arctan" cd="transc2"/>
<OMV name="x"/>
<OMV name="y"/>
</OMA>
</OMA>
<OMA>
<OMS name="divide" cd="arith1"/>
<OMV name="y"/>
<OMV name="x"/>
</OMA>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="logic1">implies</csymbol>
<apply><csymbol cd="relation1">neq</csymbol><ci>x</ci><csymbol cd="alg1">zero</csymbol></apply>
<apply><csymbol cd="relation1">eq</csymbol>
<apply><csymbol cd="transc1">tan</csymbol>
<apply><csymbol cd="transc2">arctan</csymbol><ci>x</ci><ci>y</ci></apply>
</apply>
<apply><csymbol cd="arith1">divide</csymbol><ci>y</ci><ci>x</ci></apply>
</apply>
</apply>
</math>
Prefix
Popcorn
$x != alg1.zero ==> tan(transc2.arctan($x, $y)) = $y / $x
Rendered Presentation MathML
x
≠
0
⇒
tan
(
arctan
(
x
,
y
)
)
=
y
x
Commented Mathematical property (CMP):
$x,y \in {\bf R} \implies -\pi < arctan(y,x)\le\pi$.
Formal Mathematical property (FMP):
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS name="implies" cd="logic1"/>
<OMA>
<OMS name="and" cd="logic1"/>
<OMA>
<OMS name="in" cd="set1"/>
<OMV name="x"/>
<OMS name="R" cd="setname1"/>
</OMA>
<OMA>
<OMS name="in" cd="set1"/>
<OMV name="y"/>
<OMS name="R" cd="setname1"/>
</OMA>
</OMA>
<OMA>
<OMS name="in" cd="set1"/>
<OMA>
<OMS name="arctan" cd="transc2"/>
<OMV name="x"/>
<OMV name="y"/>
</OMA>
<OMA>
<OMS name="interval_oc" cd="interval1"/>
<OMA>
<OMS name="unary_minus" cd="arith1"/>
<OMS name="pi" cd="nums1"/>
</OMA>
<OMS name="pi" cd="nums1"/>
</OMA>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="logic1">implies</csymbol>
<apply><csymbol cd="logic1">and</csymbol>
<apply><csymbol cd="set1">in</csymbol><ci>x</ci><csymbol cd="setname1">R</csymbol></apply>
<apply><csymbol cd="set1">in</csymbol><ci>y</ci><csymbol cd="setname1">R</csymbol></apply>
</apply>
<apply><csymbol cd="set1">in</csymbol>
<apply><csymbol cd="transc2">arctan</csymbol><ci>x</ci><ci>y</ci></apply>
<apply><csymbol cd="interval1">interval_oc</csymbol>
<apply><csymbol cd="arith1">unary_minus</csymbol><csymbol cd="nums1">pi</csymbol></apply>
<csymbol cd="nums1">pi</csymbol>
</apply>
</apply>
</apply>
</math>
Prefix
Popcorn
set1.in($x, setname1.R) and set1.in($y, setname1.R) ==> set1.in(transc2.arctan($x, $y), interval1.interval_oc( -(nums1.pi), nums1.pi))
Rendered Presentation MathML
x
∈
R
∧
y
∈
R
⇒
arctan
(
x
,
y
)
∈
(
-
π
,
π
]
Commented Mathematical property (CMP):
$Re(y)>0 \implies Re(arctan(y,x))>0$.
Formal Mathematical property (FMP):
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS name="implies" cd="logic1"/>
<OMA>
<OMS name="gt" cd="relation1"/>
<OMA>
<OMS name="real" cd="complex1"/>
<OMV name="y"/>
</OMA>
<OMS name="zero" cd="alg1"/>
</OMA>
<OMA>
<OMS name="gt" cd="relation1"/>
<OMA>
<OMS name="real" cd="complex1"/>
<OMA>
<OMS name="arctan" cd="transc2"/>
<OMV name="x"/>
<OMV name="y"/>
</OMA>
</OMA>
<OMS name="zero" cd="alg1"/>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="logic1">implies</csymbol>
<apply><csymbol cd="relation1">gt</csymbol>
<apply><csymbol cd="complex1">real</csymbol><ci>y</ci></apply>
<csymbol cd="alg1">zero</csymbol>
</apply>
<apply><csymbol cd="relation1">gt</csymbol>
<apply><csymbol cd="complex1">real</csymbol>
<apply><csymbol cd="transc2">arctan</csymbol><ci>x</ci><ci>y</ci></apply>
</apply>
<csymbol cd="alg1">zero</csymbol>
</apply>
</apply>
</math>
Prefix
Popcorn
complex1.real($y) > alg1.zero ==> complex1.real(transc2.arctan($x, $y)) > alg1.zero
Rendered Presentation MathML
real
(
y
)
>
0
⇒
real
(
arctan
(
x
,
y
)
)
>
0
Commented Mathematical property (CMP):
$Re(y) < 0 \implies Re(arctan(y,x)) < 0$.
Formal Mathematical property (FMP):
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS name="implies" cd="logic1"/>
<OMA>
<OMS name="lt" cd="relation1"/>
<OMA>
<OMS name="real" cd="complex1"/>
<OMV name="y"/>
</OMA>
<OMS name="zero" cd="alg1"/>
</OMA>
<OMA>
<OMS name="lt" cd="relation1"/>
<OMA>
<OMS name="real" cd="complex1"/>
<OMA>
<OMS name="arctan" cd="transc2"/>
<OMV name="x"/>
<OMV name="y"/>
</OMA>
</OMA>
<OMS name="zero" cd="alg1"/>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="logic1">implies</csymbol>
<apply><csymbol cd="relation1">lt</csymbol>
<apply><csymbol cd="complex1">real</csymbol><ci>y</ci></apply>
<csymbol cd="alg1">zero</csymbol>
</apply>
<apply><csymbol cd="relation1">lt</csymbol>
<apply><csymbol cd="complex1">real</csymbol>
<apply><csymbol cd="transc2">arctan</csymbol><ci>x</ci><ci>y</ci></apply>
</apply>
<csymbol cd="alg1">zero</csymbol>
</apply>
</apply>
</math>
Prefix
Popcorn
complex1.real($y) < alg1.zero ==> complex1.real(transc2.arctan($x, $y)) < alg1.zero
Rendered Presentation MathML
real
(
y
)
<
0
⇒
real
(
arctan
(
x
,
y
)
)
<
0
Commented Mathematical property (CMP):
$Re(y)=0 and Re(x)>0 \implies Re(arctan(y,x))=0$.
Formal Mathematical property (FMP):
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS name="implies" cd="logic1"/>
<OMA>
<OMS name="and" cd="logic1"/>
<OMA>
<OMS name="eq" cd="relation1"/>
<OMA>
<OMS name="real" cd="complex1"/>
<OMV name="y"/>
</OMA>
<OMS name="zero" cd="alg1"/>
</OMA>
<OMA>
<OMS name="gt" cd="relation1"/>
<OMA>
<OMS name="real" cd="complex1"/>
<OMV name="x"/>
</OMA>
<OMS name="zero" cd="alg1"/>
</OMA>
</OMA>
<OMA>
<OMS name="lt" cd="relation1"/>
<OMA>
<OMS name="real" cd="complex1"/>
<OMA>
<OMS name="arctan" cd="transc2"/>
<OMV name="x"/>
<OMV name="y"/>
</OMA>
</OMA>
<OMS name="zero" cd="alg1"/>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="logic1">implies</csymbol>
<apply><csymbol cd="logic1">and</csymbol>
<apply><csymbol cd="relation1">eq</csymbol>
<apply><csymbol cd="complex1">real</csymbol><ci>y</ci></apply>
<csymbol cd="alg1">zero</csymbol>
</apply>
<apply><csymbol cd="relation1">gt</csymbol>
<apply><csymbol cd="complex1">real</csymbol><ci>x</ci></apply>
<csymbol cd="alg1">zero</csymbol>
</apply>
</apply>
<apply><csymbol cd="relation1">lt</csymbol>
<apply><csymbol cd="complex1">real</csymbol>
<apply><csymbol cd="transc2">arctan</csymbol><ci>x</ci><ci>y</ci></apply>
</apply>
<csymbol cd="alg1">zero</csymbol>
</apply>
</apply>
</math>
Prefix
Popcorn
complex1.real($y) = alg1.zero and complex1.real($x) > alg1.zero ==> complex1.real(transc2.arctan($x, $y)) < alg1.zero
Rendered Presentation MathML
real
(
y
)
=
0
∧
real
(
x
)
>
0
⇒
real
(
arctan
(
x
,
y
)
)
<
0
Commented Mathematical property (CMP):
$Re(y)=0 and Re(x) < 0 \implies Re(arctan(y,x))=\pi$.
Formal Mathematical property (FMP):
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS name="implies" cd="logic1"/>
<OMA>
<OMS name="and" cd="logic1"/>
<OMA>
<OMS name="eq" cd="relation1"/>
<OMA>
<OMS name="real" cd="complex1"/>
<OMV name="y"/>
</OMA>
<OMS name="zero" cd="alg1"/>
</OMA>
<OMA>
<OMS name="lt" cd="relation1"/>
<OMA>
<OMS name="real" cd="complex1"/>
<OMV name="x"/>
</OMA>
<OMS name="zero" cd="alg1"/>
</OMA>
</OMA>
<OMA>
<OMS name="lt" cd="relation1"/>
<OMA>
<OMS name="real" cd="complex1"/>
<OMA>
<OMS name="arctan" cd="transc2"/>
<OMV name="x"/>
<OMV name="y"/>
</OMA>
</OMA>
<OMS name="pi" cd="nums1"/>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="logic1">implies</csymbol>
<apply><csymbol cd="logic1">and</csymbol>
<apply><csymbol cd="relation1">eq</csymbol>
<apply><csymbol cd="complex1">real</csymbol><ci>y</ci></apply>
<csymbol cd="alg1">zero</csymbol>
</apply>
<apply><csymbol cd="relation1">lt</csymbol>
<apply><csymbol cd="complex1">real</csymbol><ci>x</ci></apply>
<csymbol cd="alg1">zero</csymbol>
</apply>
</apply>
<apply><csymbol cd="relation1">lt</csymbol>
<apply><csymbol cd="complex1">real</csymbol>
<apply><csymbol cd="transc2">arctan</csymbol><ci>x</ci><ci>y</ci></apply>
</apply>
<csymbol cd="nums1">pi</csymbol>
</apply>
</apply>
</math>
Prefix
Popcorn
complex1.real($y) = alg1.zero and complex1.real($x) < alg1.zero ==> complex1.real(transc2.arctan($x, $y)) < nums1.pi
Rendered Presentation MathML
real
(
y
)
=
0
∧
real
(
x
)
<
0
⇒
real
(
arctan
(
x
,
y
)
)
<
π
Commented Mathematical property (CMP):
$x=0 \implies |arctan(y,x)|=\pi$.
Formal Mathematical property (FMP):
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS name="implies" cd="logic1"/>
<OMA>
<OMS name="eq" cd="relation1"/>
<OMV name="x"/>
</OMA>
<OMA>
<OMS name="eq" cd="relation1"/>
<OMA>
<OMS name="abs" cd="arith1"/>
<OMA>
<OMS name="arctan" cd="transc2"/>
<OMV name="x"/>
<OMV name="y"/>
</OMA>
</OMA>
<OMA>
<OMS name="divide" cd="arith1"/>
<OMS name="pi" cd="nums1"/>
<OMI> 2 </OMI>
</OMA>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="logic1">implies</csymbol>
<apply><csymbol cd="relation1">eq</csymbol><ci>x</ci></apply>
<apply><csymbol cd="relation1">eq</csymbol>
<apply><csymbol cd="arith1">abs</csymbol>
<apply><csymbol cd="transc2">arctan</csymbol><ci>x</ci><ci>y</ci></apply>
</apply>
<apply><csymbol cd="arith1">divide</csymbol>
<csymbol cd="nums1">pi</csymbol>
<cn type="integer">2</cn>
</apply>
</apply>
</apply>
</math>
Prefix
Popcorn
$x ==> arith1.abs(transc2.arctan($x, $y)) = nums1.pi / 2
Rendered Presentation MathML
x
⇒
|
arctan
(
x
,
y
)
|
=
π
2
Signatures:
sts
Role:
application
Description:
The unwinding number denotes the extent to which $z=\ln\exp z$ is not
true. It was orignally defined in Corless,R.M. & Jeffrey,D.J., The
Unwinding Number. SIGSAM Bulletin 30(1996) 2, pp. 28-35. However, we
take the definition (which has a change of sign) from Corless,R.M.,
Davenport,J.H., Jeffrey,D.J. & Watt,S.M., According to Abramowitz and
Stegun. SIGSAM Bulletin 34(2000) 2, pp. 58--65.
Note that the symbol is normally denoted by ${\cal K}$.
Commented Mathematical property (CMP):
unwind(z)=(z-ln exp z)/(2pi i)
Formal Mathematical property (FMP):
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS cd="relation1" name="eq"/>
<OMA>
<OMS cd="transc2" name="unwind"/>
<OMV name="z"/>
</OMA>
<OMA>
<OMS cd="arith1" name="divide"/>
<OMA>
<OMS cd="arith1" name="minus"/>
<OMV name="z"/>
<OMA>
<OMS cd="transc1" name="ln"/>
<OMA>
<OMS cd="transc1" name="exp"/>
<OMV name="z"/>
</OMA>
</OMA>
</OMA>
<OMA>
<OMS cd="arith1" name="times"/>
<OMI> 2 </OMI>
<OMS cd="nums1" name="pi"/>
<OMS cd="nums1" name="i"/>
</OMA>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="relation1">eq</csymbol>
<apply><csymbol cd="transc2">unwind</csymbol><ci>z</ci></apply>
<apply><csymbol cd="arith1">divide</csymbol>
<apply><csymbol cd="arith1">minus</csymbol>
<ci>z</ci>
<apply><csymbol cd="transc1">ln</csymbol>
<apply><csymbol cd="transc1">exp</csymbol><ci>z</ci></apply>
</apply>
</apply>
<apply><csymbol cd="arith1">times</csymbol>
<cn type="integer">2</cn>
<csymbol cd="nums1">pi</csymbol>
<csymbol cd="nums1">i</csymbol>
</apply>
</apply>
</apply>
</math>
Prefix
Popcorn
transc2.unwind($z) = ($z - ln(exp($z))) / (2 * nums1.pi * nums1.i)
Rendered Presentation MathML
unwind
(
z
)
=
z
-
ln
(
exp
(
z
)
)
2
π
i
Commented Mathematical property (CMP):
unwind(z)=ceiling((Im z - pi)/(2pi))
Formal Mathematical property (FMP):
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS cd="relation1" name="eq"/>
<OMA>
<OMS cd="transc2" name="unwind"/>
<OMV name="z"/>
</OMA>
<OMA>
<OMS cd="rounding1" name="ceiling"/>
<OMA>
<OMS cd="arith1" name="divide"/>
<OMA>
<OMS cd="arith1" name="minus"/>
<OMA>
<OMS cd="complex1" name="imaginary"/>
<OMV name="z"/>
</OMA>
<OMS cd="nums1" name="pi"/>
</OMA>
<OMA>
<OMS cd="arith1" name="times"/>
<OMI> 2 </OMI>
<OMS cd="nums1" name="pi"/>
</OMA>
</OMA>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="relation1">eq</csymbol>
<apply><csymbol cd="transc2">unwind</csymbol><ci>z</ci></apply>
<apply><csymbol cd="rounding1">ceiling</csymbol>
<apply><csymbol cd="arith1">divide</csymbol>
<apply><csymbol cd="arith1">minus</csymbol>
<apply><csymbol cd="complex1">imaginary</csymbol><ci>z</ci></apply>
<csymbol cd="nums1">pi</csymbol>
</apply>
<apply><csymbol cd="arith1">times</csymbol>
<cn type="integer">2</cn>
<csymbol cd="nums1">pi</csymbol>
</apply>
</apply>
</apply>
</apply>
</math>
Prefix
Popcorn
transc2.unwind($z) = rounding1.ceiling((complex1.imaginary($z) - nums1.pi) / (2 * nums1.pi))
Rendered Presentation MathML
unwind
(
z
)
=
ceiling
(
imaginary
(
z
)
-
π
2
π
)
Commented Mathematical property (CMP):
z in C implies unwind(z) in Z
Formal Mathematical property (FMP):
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS cd="logic1" name="implies"/>
<OMA>
<OMS cd="set1" name="in"/>
<OMV name="z"/>
<OMS cd="setname1" name="C"/>
</OMA>
<OMA>
<OMS cd="set1" name="in"/>
<OMA>
<OMS cd="transc2" name="unwind"/>
<OMV name="z"/>
</OMA>
<OMS cd="setname1" name="Z"/>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="logic1">implies</csymbol>
<apply><csymbol cd="set1">in</csymbol><ci>z</ci><csymbol cd="setname1">C</csymbol></apply>
<apply><csymbol cd="set1">in</csymbol>
<apply><csymbol cd="transc2">unwind</csymbol><ci>z</ci></apply>
<csymbol cd="setname1">Z</csymbol>
</apply>
</apply>
</math>
Prefix
Popcorn
set1.in($z, setname1.C) ==> set1.in(transc2.unwind($z), setname1.Z)
Rendered Presentation MathML
z
∈
C
⇒
unwind
(
z
)
∈
Z
\arcsin z = \arctan\frac z{\sqrt{1-z^2}} +\pi\K(-\ln(1+z))-\pi\K(-\ln(1-z)).
Example:
OpenMath XML (source)
<OMOBJ xmlns="http://www.openmath.org/OpenMath" version="2.0" cdbase="http://www.openmath.org/cd">
<OMA>
<OMS cd="relation1" name="eq"/>
<OMA>
<OMS cd="transc1" name="arcsin"/>
<OMV name="z"/>
</OMA>
<OMA>
<OMS cd="arith1" name="plus"/>
<OMA>
<OMS cd="transc1" name="arctan"/>
<OMA>
<OMS cd="arith1" name="divide"/>
<OMV name="z"/>
<OMA>
<OMS cd="arith1" name="root"/>
<OMA>
<OMS cd="arith1" name="minus"/>
<OMS cd="alg1" name="one"/>
<OMA>
<OMS cd="arith1" name="power"/>
<OMV name="z"/>
<OMI> 2 </OMI>
</OMA>
</OMA>
<OMI> 2 </OMI>
</OMA>
</OMA>
</OMA>
<OMA>
<OMS cd="arith1" name="times"/>
<OMS cd="nums1" name="pi"/>
<OMA>
<OMS cd="arith1" name="minus"/>
<OMA>
<OMS cd="transc2" name="unwind"/>
<OMA>
<OMS cd="arith1" name="unary_minus"/>
<OMA>
<OMS cd="transc1" name="ln"/>
<OMA>
<OMS cd="arith1" name="plus"/>
<OMS cd="alg1" name="one"/>
<OMV name="z"/>
</OMA>
</OMA>
</OMA>
</OMA>
<OMA>
<OMS cd="transc2" name="unwind"/>
<OMA>
<OMS cd="arith1" name="unary_minus"/>
<OMA>
<OMS cd="transc1" name="ln"/>
<OMA>
<OMS cd="arith1" name="minus"/>
<OMS cd="alg1" name="one"/>
<OMV name="z"/>
</OMA>
</OMA>
</OMA>
</OMA>
</OMA>
</OMA>
</OMA>
</OMA>
</OMOBJ>
Strict Content MathML
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply><csymbol cd="relation1">eq</csymbol>
<apply><csymbol cd="transc1">arcsin</csymbol><ci>z</ci></apply>
<apply><csymbol cd="arith1">plus</csymbol>
<apply><csymbol cd="transc1">arctan</csymbol>
<apply><csymbol cd="arith1">divide</csymbol>
<ci>z</ci>
<apply><csymbol cd="arith1">root</csymbol>
<apply><csymbol cd="arith1">minus</csymbol>
<csymbol cd="alg1">one</csymbol>
<apply><csymbol cd="arith1">power</csymbol><ci>z</ci><cn type="integer">2</cn></apply>
</apply>
<cn type="integer">2</cn>
</apply>
</apply>
</apply>
<apply><csymbol cd="arith1">times</csymbol>
<csymbol cd="nums1">pi</csymbol>
<apply><csymbol cd="arith1">minus</csymbol>
<apply><csymbol cd="transc2">unwind</csymbol>
<apply><csymbol cd="arith1">unary_minus</csymbol>
<apply><csymbol cd="transc1">ln</csymbol>
<apply><csymbol cd="arith1">plus</csymbol><csymbol cd="alg1">one</csymbol><ci>z</ci></apply>
</apply>
</apply>
</apply>
<apply><csymbol cd="transc2">unwind</csymbol>
<apply><csymbol cd="arith1">unary_minus</csymbol>
<apply><csymbol cd="transc1">ln</csymbol>
<apply><csymbol cd="arith1">minus</csymbol><csymbol cd="alg1">one</csymbol><ci>z</ci></apply>
</apply>
</apply>
</apply>
</apply>
</apply>
</apply>
</apply>
</math>
Prefix
eq
(
arcsin
(
z )
,
plus
(
arctan
(
divide
(
z ,
root
(
minus
(
one ,
power
(
z , 2 )
)
, 2 )
)
)
,
times
(
pi ,
minus
(
unwind
(
unary_minus
(
ln
(
plus
(
one ,
z )
)
)
)
,
unwind
(
unary_minus
(
ln
(
minus
(
one ,
z )
)
)
)
)
)
)
)
Popcorn
arcsin($z) = arctan($z / arith1.root(alg1.one - $z ^ 2, 2)) + nums1.pi * (transc2.unwind( -(ln(alg1.one + $z))) - transc2.unwind( -(ln(alg1.one - $z))))
Rendered Presentation MathML
arcsin
(
z
)
=
arctan
(
z
1
-
z
2
)
+
π
(
unwind
(
-
ln
(
1
+
z
)
)
-
unwind
(
-
ln
(
1
-
z
)
)
)
Signatures:
sts