csgn
sign function for real and complex expressions
Calling Sequence
Parameters
Description
Examples
csgn(x)
csgn(1, x)
csgn(0, x, y)
x
-
any algebraic expression
y
The csgn function is used to determine in which half-plane ("left" or "right") the complex-valued expression or number x lies. With the exception described in the next bullet point, it is defined by
csgn⁡x=10<ℜ⁡xorℜ⁡x=0and0<ℑ⁡x−1ℜ⁡x<0orℜ⁡x=0andℑ⁡x<0
For the case of a complex number in which the real component is one of the floating point values -0. or +0., csgn returns the sign of the real part. For more information, see Numeric Computation in Maple.
The value of csgn(0) is controlled by the environment variable _Envsignum0. The 3-argument calling sequence csgn(0, x, y) sets _Envsignum0 = y for the duration of the call to csgn. See signum for further information.
The decision of whether or not to perform many of the automatic symmetry transformations in maple is based on the value of csgn. For example, if csgn(x) = -1, the transformation sin⁡x→−sin⁡−x is done.
csgn uses signum to determine the signs of ℜ⁡x and ℑ⁡x.
The derivative of csgn is denoted by csgn(1, x). This is 0 for all non-purely-imaginary numbers, and is undefined otherwise.
For mathematical consistency, the value of csgn(0), as determined either by the value of _Envsignum0 or by the third argument to csgn, should be either 0 (the default) or one of 1, -1, or undefined.
csgn⁡1−23⁢I
1
csgn⁡−1−23⁢I
−1
csgn⁡−1+23⁢I
csgn⁡1+23⁢I
csgn⁡−23⁢π⁢I
csgn⁡exp⁡2⁢π3⁢I
csgn⁡π
diff⁡csgn⁡x,x
csgn⁡1,x
diff⁡csgn⁡x,x,x
csgn⁡1,−3+I
0
csgn⁡0
csgn⁡0,0,−1
The following illustrates the exception for floating point complex numbers with real part equal to -0. or +0.:
csgn⁡0+I
csgn⁡−0.+1.⁢I
csgn⁡0−I
csgn⁡0.−1.⁢I
See Also
assume
evalc
initialfunctions
sign
signum
Download Help Document