Arbitrary Precision Complex Intervals#
This is a simple complex interval package, using intervals which are axis-aligned rectangles in the complex plane. It has very few special functions, and it does not use any special tricks to keep the size of the intervals down.
AUTHORS:
These authors wrote complex_mpfr.pyx
(renamed from complex_number.pyx
):
- William Stein (2006-01-26): complete rewrite
- Joel B. Mohler (2006-12-16): naive rewrite into pyrex
- William Stein(2007-01): rewrite of Mohler's rewrite
Then complex_number.pyx
was copied to complex_interval.pyx
and
heavily modified:
Carl Witty (2007-10-24): rewrite to become a complex interval package
Travis Scrimshaw (2012-10-18): Added documentation to get full coverage.
Warning
Mixing symbolic expressions with intervals (in particular, converting constant symbolic expressions to intervals), can lead to incorrect results:
sage: ref = ComplexIntervalField(100)(ComplexBallField(100).one().airy_ai())
sage: ref
0.135292416312881415524147423515?
sage: val = CIF(airy_ai(1)); val # known bug
0.13529241631288142?
sage: val.overlaps(ref) # known bug
False
ref = ComplexIntervalField(100)(ComplexBallField(100).one().airy_ai()) ref val = CIF(airy_ai(1)); val # known bug val.overlaps(ref) # known bug
Todo
Implement ComplexIntervalFieldElement
multiplicative
order similar to ComplexNumber
multiplicative
order with _set_multiplicative_order(n)
and
ComplexNumber.multiplicative_order()
methods.
- class sage.rings.complex_interval.ComplexIntervalFieldElement#
Bases:
FieldElement
A complex interval.
EXAMPLES:
sage: I = CIF.gen() sage: b = 3/2 + 5/2*I sage: TestSuite(b).run()
I = CIF.gen() b = 3/2 + 5/2*I TestSuite(b).run()
- arg()#
Same as
argument()
.EXAMPLES:
sage: i = CIF.0 sage: (i^2).arg() 3.141592653589794?
i = CIF.0 (i^2).arg()
- argument()#
The argument (angle) of the complex number, normalized so that
.We raise a
ValueError
if the interval strictly contains 0, or if the interval contains only 0.Warning
We do not always use the standard branch cut for argument! If the interval crosses the negative real axis, then the argument will be an interval whose lower bound is less than
and whose upper bound is more than ; in effect, we move the branch cut away from the interval.EXAMPLES:
sage: i = CIF.0 sage: (i^2).argument() 3.141592653589794? sage: (1+i).argument() 0.785398163397449? sage: i.argument() 1.570796326794897? sage: (-i).argument() -1.570796326794897? sage: (-1/1000 - i).argument() -1.571796326461564? sage: CIF(2).argument() 0 sage: CIF(-2).argument() 3.141592653589794?
i = CIF.0 (i^2).argument() (1+i).argument() i.argument() (-i).argument() (-1/1000 - i).argument() CIF(2).argument() CIF(-2).argument()
Here we see that if the interval crosses the negative real axis, then the argument can exceed
, and we we violate the standard interval guarantees in the process:sage: CIF(-2, RIF(-0.1, 0.1)).argument().str(style='brackets') '[3.0916342578678501 .. 3.1915510493117365]' sage: CIF(-2, -0.1).argument() -3.091634257867851?
CIF(-2, RIF(-0.1, 0.1)).argument().str(style='brackets') CIF(-2, -0.1).argument()
- bisection()#
Return the bisection of
self
into four intervals whose union isself
and intersection iscenter()
.EXAMPLES:
sage: z = CIF(RIF(2, 3), RIF(-5, -4)) sage: z.bisection() (3.? - 5.?*I, 3.? - 5.?*I, 3.? - 5.?*I, 3.? - 5.?*I) sage: for z in z.bisection(): ....: print(z.real().endpoints()) ....: print(z.imag().endpoints()) (2.00000000000000, 2.50000000000000) (-5.00000000000000, -4.50000000000000) (2.50000000000000, 3.00000000000000) (-5.00000000000000, -4.50000000000000) (2.00000000000000, 2.50000000000000) (-4.50000000000000, -4.00000000000000) (2.50000000000000, 3.00000000000000) (-4.50000000000000, -4.00000000000000) sage: # needs sage.symbolic sage: z = CIF(RIF(sqrt(2), sqrt(3)), RIF(e, pi)) sage: a, b, c, d = z.bisection() sage: a.intersection(b).intersection(c).intersection(d) == CIF(z.center()) True sage: zz = a.union(b).union(c).union(c) sage: zz.real().endpoints() == z.real().endpoints() True sage: zz.imag().endpoints() == z.imag().endpoints() True
z = CIF(RIF(2, 3), RIF(-5, -4)) z.bisection() for z in z.bisection(): print(z.real().endpoints()) print(z.imag().endpoints()) # needs sage.symbolic z = CIF(RIF(sqrt(2), sqrt(3)), RIF(e, pi)) a, b, c, d = z.bisection() a.intersection(b).intersection(c).intersection(d) == CIF(z.center()) zz = a.union(b).union(c).union(c) zz.real().endpoints() == z.real().endpoints() zz.imag().endpoints() == z.imag().endpoints()
- center()#
Return the closest floating-point approximation to the center of the interval.
EXAMPLES:
sage: CIF(RIF(1, 2), RIF(3, 4)).center() 1.50000000000000 + 3.50000000000000*I
CIF(RIF(1, 2), RIF(3, 4)).center()
- conjugate()#
Return the complex conjugate of this complex number.
EXAMPLES:
sage: i = CIF.0 sage: (1+i).conjugate() 1 - 1*I
i = CIF.0 (1+i).conjugate()
- contains_zero()#
Return
True
ifself
is an interval containing zero.EXAMPLES:
sage: CIF(0).contains_zero() True sage: CIF(RIF(-1, 1), 1).contains_zero() False
CIF(0).contains_zero() CIF(RIF(-1, 1), 1).contains_zero()
- cos()#
Compute the cosine of this complex interval.
EXAMPLES:
sage: CIF(1,1).cos() 0.833730025131149? - 0.988897705762865?*I sage: CIF(3).cos() -0.9899924966004455? sage: CIF(0,2).cos() 3.762195691083632?
CIF(1,1).cos() CIF(3).cos() CIF(0,2).cos()
Check that github issue #17285 is fixed:
sage: CIF(cos(2/3)) # needs sage.symbolic 0.7858872607769480?
CIF(cos(2/3)) # needs sage.symbolic
ALGORITHM:
The implementation uses the following trigonometric identity
- cosh()#
Return the hyperbolic cosine of this complex interval.
EXAMPLES:
sage: CIF(1,1).cosh() 0.833730025131149? + 0.988897705762865?*I sage: CIF(2).cosh() 3.762195691083632? sage: CIF(0,2).cosh() -0.4161468365471424?
CIF(1,1).cosh() CIF(2).cosh() CIF(0,2).cosh()
ALGORITHM:
The implementation uses the following trigonometric identity
- crosses_log_branch_cut()#
Return
True
if this interval crosses the standard branch cut forlog()
(and hence for exponentiation) and for argument. (Recall that this branch cut is infinitesimally below the negative portion of the real axis.)EXAMPLES:
sage: z = CIF(1.5, 2.5) - CIF(0, 2.50000000000000001); z 1.5000000000000000? + -1.?e-15*I sage: z.crosses_log_branch_cut() False sage: CIF(-2, RIF(-0.1, 0.1)).crosses_log_branch_cut() True
z = CIF(1.5, 2.5) - CIF(0, 2.50000000000000001); z z.crosses_log_branch_cut() CIF(-2, RIF(-0.1, 0.1)).crosses_log_branch_cut()
- diameter()#
Return a somewhat-arbitrarily defined “diameter” for this interval.
The diameter of an interval is the maximum of the diameter of the real and imaginary components, where diameter on a real interval is defined as absolute diameter if the interval contains zero, and relative diameter otherwise.
EXAMPLES:
sage: CIF(RIF(-1, 1), RIF(13, 17)).diameter() 2.00000000000000 sage: CIF(RIF(-0.1, 0.1), RIF(13, 17)).diameter() 0.266666666666667 sage: CIF(RIF(-1, 1), 15).diameter() 2.00000000000000
CIF(RIF(-1, 1), RIF(13, 17)).diameter() CIF(RIF(-0.1, 0.1), RIF(13, 17)).diameter() CIF(RIF(-1, 1), 15).diameter()
- edges()#
Return the 4 edges of the rectangle in the complex plane defined by this interval as intervals.
OUTPUT: a 4-tuple of complex intervals (left edge, right edge, lower edge, upper edge)
See also
endpoints()
which returns the 4 corners of the rectangle.EXAMPLES:
sage: CIF(RIF(1,2), RIF(3,4)).edges() (1 + 4.?*I, 2 + 4.?*I, 2.? + 3*I, 2.? + 4*I) sage: ComplexIntervalField(20)(-2).log().edges() (0.69314671? + 3.14160?*I, 0.69314766? + 3.14160?*I, 0.693147? + 3.1415902?*I, 0.693147? + 3.1415940?*I)
CIF(RIF(1,2), RIF(3,4)).edges() ComplexIntervalField(20)(-2).log().edges()
- endpoints()#
Return the 4 corners of the rectangle in the complex plane defined by this interval.
OUTPUT: a 4-tuple of complex numbers (lower left, upper right, upper left, lower right)
See also
edges()
which returns the 4 edges of the rectangle.EXAMPLES:
sage: CIF(RIF(1,2), RIF(3,4)).endpoints() (1.00000000000000 + 3.00000000000000*I, 2.00000000000000 + 4.00000000000000*I, 1.00000000000000 + 4.00000000000000*I, 2.00000000000000 + 3.00000000000000*I) sage: ComplexIntervalField(20)(-2).log().endpoints() (0.69315 + 3.1416*I, 0.69315 + 3.1416*I, 0.69315 + 3.1416*I, 0.69315 + 3.1416*I)
CIF(RIF(1,2), RIF(3,4)).endpoints() ComplexIntervalField(20)(-2).log().endpoints()
- exp()#
Compute
or where is the complex numberself
.EXAMPLES:
sage: i = ComplexIntervalField(300).0 sage: z = 1 + i sage: z.exp() 1.46869393991588515713896759732660426132695673662900872279767567631093696585951213872272450? + 2.28735528717884239120817190670050180895558625666835568093865811410364716018934540926734485?*I
i = ComplexIntervalField(300).0 z = 1 + i z.exp()
- imag()#
Return imaginary part of
self
.EXAMPLES:
sage: i = ComplexIntervalField(100).0 sage: z = 2 + 3*i sage: x = z.imag(); x 3 sage: x.parent() Real Interval Field with 100 bits of precision
i = ComplexIntervalField(100).0 z = 2 + 3*i x = z.imag(); x x.parent()
- intersection(other)#
Return the intersection of the two complex intervals
self
andother
.EXAMPLES:
sage: CIF(RIF(1, 3), RIF(1, 3)).intersection(CIF(RIF(2, 4), RIF(2, 4))).str(style='brackets') '[2.0000000000000000 .. 3.0000000000000000] + [2.0000000000000000 .. 3.0000000000000000]*I' sage: CIF(RIF(1, 2), RIF(1, 3)).intersection(CIF(RIF(3, 4), RIF(2, 4))) Traceback (most recent call last): ... ValueError: intersection of non-overlapping intervals
CIF(RIF(1, 3), RIF(1, 3)).intersection(CIF(RIF(2, 4), RIF(2, 4))).str(style='brackets') CIF(RIF(1, 2), RIF(1, 3)).intersection(CIF(RIF(3, 4), RIF(2, 4)))
- is_NaN()#
Return
True
if this is not-a-number.EXAMPLES:
sage: CIF(2, 1).is_NaN() False sage: CIF(NaN).is_NaN() # needs sage.symbolic True sage: (1 / CIF(0, 0)).is_NaN() True
CIF(2, 1).is_NaN() CIF(NaN).is_NaN() # needs sage.symbolic (1 / CIF(0, 0)).is_NaN()
- is_exact()#
Return whether this complex interval is exact (i.e. contains exactly one complex value).
EXAMPLES:
sage: CIF(3).is_exact() True sage: CIF(0, 2).is_exact() True sage: CIF(-4, 0).sqrt().is_exact() True sage: CIF(-5, 0).sqrt().is_exact() False sage: CIF(0, 2*pi).is_exact() # needs sage.symbolic False sage: CIF(e).is_exact() # needs sage.symbolic False sage: CIF(1e100).is_exact() True sage: (CIF(1e100) + 1).is_exact() False
CIF(3).is_exact() CIF(0, 2).is_exact() CIF(-4, 0).sqrt().is_exact() CIF(-5, 0).sqrt().is_exact() CIF(0, 2*pi).is_exact() # needs sage.symbolic CIF(e).is_exact() # needs sage.symbolic CIF(1e100).is_exact() (CIF(1e100) + 1).is_exact()
- is_square()#
Return
True
as is algebraically closed.EXAMPLES:
sage: CIF(2, 1).is_square() True
CIF(2, 1).is_square()
- lexico_cmp(left, right)#
Intervals are compared lexicographically on the 4-tuple:
(x.real().lower(), x.real().upper(), x.imag().lower(), x.imag().upper())
EXAMPLES:
sage: a = CIF(RIF(0,1), RIF(0,1)) sage: b = CIF(RIF(0,1), RIF(0,2)) sage: c = CIF(RIF(0,2), RIF(0,2)) sage: a.lexico_cmp(b) -1 sage: b.lexico_cmp(c) -1 sage: a.lexico_cmp(c) -1 sage: a.lexico_cmp(a) 0 sage: b.lexico_cmp(a) 1
a = CIF(RIF(0,1), RIF(0,1)) b = CIF(RIF(0,1), RIF(0,2)) c = CIF(RIF(0,2), RIF(0,2)) a.lexico_cmp(b) b.lexico_cmp(c) a.lexico_cmp(c) a.lexico_cmp(a) b.lexico_cmp(a)
- log(base=None)#
Complex logarithm of
.Warning
This does always not use the standard branch cut for complex log! See the docstring for
argument()
to see what we do instead.EXAMPLES:
sage: a = CIF(RIF(3, 4), RIF(13, 14)) sage: a.log().str(style='brackets') '[2.5908917751460420 .. 2.6782931373360067] + [1.2722973952087170 .. 1.3597029935721503]*I' sage: a.log().exp().str(style='brackets') '[2.7954667135098274 .. 4.2819545928390213] + [12.751682453911920 .. 14.237018048974635]*I' sage: a in a.log().exp() True
a = CIF(RIF(3, 4), RIF(13, 14)) a.log().str(style='brackets') a.log().exp().str(style='brackets') a in a.log().exp()
If the interval crosses the negative real axis, then we don’t use the standard branch cut (and we violate the interval guarantees):
sage: CIF(-3, RIF(-1/4, 1/4)).log().str(style='brackets') '[1.0986122886681095 .. 1.1020725100903968] + [3.0584514217013518 .. 3.2247338854782349]*I' sage: CIF(-3, -1/4).log() 1.102072510090397? - 3.058451421701352?*I
CIF(-3, RIF(-1/4, 1/4)).log().str(style='brackets') CIF(-3, -1/4).log()
Usually if an interval contains zero, we raise an exception:
sage: CIF(RIF(-1,1),RIF(-1,1)).log() Traceback (most recent call last): ... ValueError: Can...t take the argument of interval strictly containing zero
CIF(RIF(-1,1),RIF(-1,1)).log()
But we allow the exact input zero:
sage: CIF(0).log() [-infinity .. -infinity]
CIF(0).log()
If a base is passed from another function, we can accommodate this:
sage: CIF(-1,1).log(2) 0.500000000000000? + 3.39927010637040?*I
CIF(-1,1).log(2)
- magnitude()#
The largest absolute value of the elements of the interval, rounded away from zero.
OUTPUT: a real number with rounding mode
RNDU
EXAMPLES:
sage: CIF(RIF(-1,1), RIF(-1,1)).magnitude() 1.41421356237310 sage: CIF(RIF(1,2), RIF(3,4)).magnitude() 4.47213595499958 sage: parent(CIF(1).magnitude()) Real Field with 53 bits of precision and rounding RNDU
CIF(RIF(-1,1), RIF(-1,1)).magnitude() CIF(RIF(1,2), RIF(3,4)).magnitude() parent(CIF(1).magnitude())
- mignitude()#
The smallest absolute value of the elements of the interval, rounded towards zero.
OUTPUT: a real number with rounding mode
RNDD
EXAMPLES:
sage: CIF(RIF(-1,1), RIF(-1,1)).mignitude() 0.000000000000000 sage: CIF(RIF(1,2), RIF(3,4)).mignitude() 3.16227766016837 sage: parent(CIF(1).mignitude()) Real Field with 53 bits of precision and rounding RNDD
CIF(RIF(-1,1), RIF(-1,1)).mignitude() CIF(RIF(1,2), RIF(3,4)).mignitude() parent(CIF(1).mignitude())
- multiplicative_order()#
Return the multiplicative order of this complex number, if known, or raise a
NotImplementedError
.EXAMPLES:
sage: C = CIF sage: i = C.0 sage: i.multiplicative_order() 4 sage: C(1).multiplicative_order() 1 sage: C(-1).multiplicative_order() 2 sage: (i^2).multiplicative_order() 2 sage: (-i).multiplicative_order() 4 sage: C(2).multiplicative_order() +Infinity sage: w = (1 + C(-3).sqrt())/2 ; w 0.50000000000000000? + 0.866025403784439?*I sage: w.multiplicative_order() Traceback (most recent call last): ... NotImplementedError: order of element not known
C = CIF i = C.0 i.multiplicative_order() C(1).multiplicative_order() C(-1).multiplicative_order() (i^2).multiplicative_order() (-i).multiplicative_order() C(2).multiplicative_order() w = (1 + C(-3).sqrt())/2 ; w w.multiplicative_order()
- norm()#
Return the norm of this complex number.
If
is a complex number, then the norm of is defined as the product of and its complex conjugate:The norm of a complex number is different from its absolute value. The absolute value of a complex number is defined to be the square root of its norm. A typical use of the complex norm is in the integral domain
of Gaussian integers, where the norm of each Gaussian integer is defined as its complex norm.EXAMPLES:
sage: CIF(2, 1).norm() 5 sage: CIF(1, -2).norm() 5
CIF(2, 1).norm() CIF(1, -2).norm()
- overlaps(other)#
Return
True
ifself
and other are intervals with at least one value in common.EXAMPLES:
sage: CIF(0).overlaps(CIF(RIF(0, 1), RIF(-1, 0))) True sage: CIF(1).overlaps(CIF(1, 1)) False
CIF(0).overlaps(CIF(RIF(0, 1), RIF(-1, 0))) CIF(1).overlaps(CIF(1, 1))
- plot(pointsize=10, **kwds)#
Plot a complex interval as a rectangle.
EXAMPLES:
sage: sum(plot(CIF(RIF(1/k, 1/k), RIF(-k, k))) for k in [1..10]) # needs sage.plot Graphics object consisting of 20 graphics primitives
sum(plot(CIF(RIF(1/k, 1/k), RIF(-k, k))) for k in [1..10]) # needs sage.plot
Exact and nearly exact points are still visible:
sage: # needs sage.plot sage: plot(CIF(pi, 1), color='red') + plot(CIF(1, e), color='purple') + plot(CIF(-1, -1)) Graphics object consisting of 6 graphics primitives
# needs sage.plot plot(CIF(pi, 1), color='red') + plot(CIF(1, e), color='purple') + plot(CIF(-1, -1))
A demonstration that
acts chaotically on :sage: # needs sage.plot sage.symbolic sage: z = CIF(0, 2*pi/1000).exp() sage: g = Graphics() sage: for i in range(40): ....: z = z^2 ....: g += z.plot(color=(1./(40-i), 0, 1)) ... sage: g Graphics object consisting of 80 graphics primitives
# needs sage.plot sage.symbolic z = CIF(0, 2*pi/1000).exp() g = Graphics() for i in range(40): z = z^2 g += z.plot(color=(1./(40-i), 0, 1)) g
- prec()#
Return precision of this complex number.
EXAMPLES:
sage: i = ComplexIntervalField(2000).0 sage: i.prec() 2000
i = ComplexIntervalField(2000).0 i.prec()
- real()#
Return real part of
self
.EXAMPLES:
sage: i = ComplexIntervalField(100).0 sage: z = 2 + 3*i sage: x = z.real(); x 2 sage: x.parent() Real Interval Field with 100 bits of precision
i = ComplexIntervalField(100).0 z = 2 + 3*i x = z.real(); x x.parent()
- sin()#
Compute the sine of this complex interval.
EXAMPLES:
sage: CIF(1,1).sin() 1.298457581415978? + 0.634963914784736?*I sage: CIF(2).sin() 0.909297426825682? sage: CIF(0,2).sin() 3.626860407847019?*I
CIF(1,1).sin() CIF(2).sin() CIF(0,2).sin()
Check that github issue #17825 is fixed:
sage: CIF(sin(2/3)) # needs sage.symbolic 0.618369803069737?
CIF(sin(2/3)) # needs sage.symbolic
ALGORITHM:
The implementation uses the following trigonometric identity
- sinh()#
Return the hyperbolic sine of this complex interval.
EXAMPLES:
sage: CIF(1,1).sinh() 0.634963914784736? + 1.298457581415978?*I sage: CIF(2).sinh() 3.626860407847019? sage: CIF(0,2).sinh() 0.909297426825682?*I
CIF(1,1).sinh() CIF(2).sinh() CIF(0,2).sinh()
ALGORITHM:
The implementation uses the following trigonometric identity
- sqrt(all=False, **kwds)#
The square root function.
Warning
We approximate the standard branch cut along the negative real axis, with
sqrt(-r^2) = i*r
for positive realr
; but if the interval crosses the negative real axis, we pick the root with positive imaginary component for the entire interval.INPUT:
all
– bool (default:False
); ifTrue
, return a list of all square roots.
EXAMPLES:
sage: CIF(-1).sqrt()^2 -1 sage: sqrt(CIF(2)) 1.414213562373095? sage: sqrt(CIF(-1)) 1*I sage: sqrt(CIF(2-I))^2 2.00000000000000? - 1.00000000000000?*I sage: CC(-2-I).sqrt()^2 -2.00000000000000 - 1.00000000000000*I
CIF(-1).sqrt()^2 sqrt(CIF(2)) sqrt(CIF(-1)) sqrt(CIF(2-I))^2 CC(-2-I).sqrt()^2
Here, we select a non-principal root for part of the interval, and violate the standard interval guarantees:
sage: CIF(-5, RIF(-1, 1)).sqrt().str(style='brackets') '[-0.22250788030178321 .. 0.22250788030178296] + [2.2251857651053086 .. 2.2581008643532262]*I' sage: CIF(-5, -1).sqrt() 0.222507880301783? - 2.247111425095870?*I
CIF(-5, RIF(-1, 1)).sqrt().str(style='brackets') CIF(-5, -1).sqrt()
- str(base=10, style=None)#
Return a string representation of
self
.EXAMPLES:
sage: CIF(1.5).str() '1.5000000000000000?' sage: CIF(1.5, 2.5).str() '1.5000000000000000? + 2.5000000000000000?*I' sage: CIF(1.5, -2.5).str() '1.5000000000000000? - 2.5000000000000000?*I' sage: CIF(0, -2.5).str() '-2.5000000000000000?*I' sage: CIF(1.5).str(base=3) '1.1111111111111111111111111111111112?' sage: CIF(1, pi).str(style='brackets') # needs sage.symbolic '[1.0000000000000000 .. 1.0000000000000000] + [3.1415926535897931 .. 3.1415926535897936]*I'
CIF(1.5).str() CIF(1.5, 2.5).str() CIF(1.5, -2.5).str() CIF(0, -2.5).str() CIF(1.5).str(base=3) CIF(1, pi).str(style='brackets') # needs sage.symbolic
See also
RealIntervalFieldElement.str()
- tan()#
Return the tangent of this complex interval.
EXAMPLES:
sage: CIF(1,1).tan() 0.27175258531952? + 1.08392332733870?*I sage: CIF(2).tan() -2.185039863261519? sage: CIF(0,2).tan() 0.964027580075817?*I
CIF(1,1).tan() CIF(2).tan() CIF(0,2).tan()
- tanh()#
Return the hyperbolic tangent of this complex interval.
EXAMPLES:
sage: CIF(1,1).tanh() 1.08392332733870? + 0.27175258531952?*I sage: CIF(2).tanh() 0.964027580075817? sage: CIF(0,2).tanh() -2.185039863261519?*I
CIF(1,1).tanh() CIF(2).tanh() CIF(0,2).tanh()
- union(other)#
Return the smallest complex interval including the two complex intervals
self
andother
.EXAMPLES:
sage: CIF(0).union(CIF(5, 5)).str(style='brackets') '[0.0000000000000000 .. 5.0000000000000000] + [0.0000000000000000 .. 5.0000000000000000]*I'
CIF(0).union(CIF(5, 5)).str(style='brackets')
- zeta(a=None)#
Return the image of this interval by the Hurwitz zeta function.
For
a = 1
(ora = None
), this computes the Riemann zeta function.EXAMPLES:
sage: zeta(CIF(2, 3)) 0.7980219851462757? - 0.1137443080529385?*I sage: _.parent() Complex Interval Field with 53 bits of precision sage: CIF(2, 3).zeta(1/2) -1.955171567161496? + 3.123301509220897?*I
zeta(CIF(2, 3)) _.parent() CIF(2, 3).zeta(1/2)
- sage.rings.complex_interval.create_ComplexIntervalFieldElement(s_real, s_imag=None, pad=0, min_prec=53)#
Return the complex number defined by the strings
s_real
ands_imag
as an element ofComplexIntervalField(prec=n)
, where potentially has slightly more (controlled by pad) bits than given by .INPUT:
s_real
– a string that defines a real number (or something whose string representation defines a number)s_imag
– a string that defines a real number (or something whose string representation defines a number)pad
– an integer at least 0.min_prec
– number will have at least this many bits of precision, no matter what.
EXAMPLES:
sage: ComplexIntervalFieldElement('2.3') 2.300000000000000? sage: ComplexIntervalFieldElement('2.3','1.1') 2.300000000000000? + 1.100000000000000?*I sage: ComplexIntervalFieldElement(10) 10 sage: ComplexIntervalFieldElement(10,10) 10 + 10*I sage: ComplexIntervalFieldElement(1.000000000000000000000000000,2) 1 + 2*I sage: ComplexIntervalFieldElement(1,2.000000000000000000000) 1 + 2*I sage: ComplexIntervalFieldElement(1.234567890123456789012345, 5.4321098654321987654321) 1.234567890123456789012350? + 5.432109865432198765432000?*I
ComplexIntervalFieldElement('2.3') ComplexIntervalFieldElement('2.3','1.1') ComplexIntervalFieldElement(10) ComplexIntervalFieldElement(10,10) ComplexIntervalFieldElement(1.000000000000000000000000000,2) ComplexIntervalFieldElement(1,2.000000000000000000000) ComplexIntervalFieldElement(1.234567890123456789012345, 5.4321098654321987654321)
- sage.rings.complex_interval.is_ComplexIntervalFieldElement(x)#
Check if
x
is aComplexIntervalFieldElement
.EXAMPLES:
sage: from sage.rings.complex_interval import is_ComplexIntervalFieldElement as is_CIFE sage: is_CIFE(CIF(2)) True sage: is_CIFE(CC(2)) False
from sage.rings.complex_interval import is_ComplexIntervalFieldElement as is_CIFE is_CIFE(CIF(2)) is_CIFE(CC(2))
- sage.rings.complex_interval.make_ComplexIntervalFieldElement0(fld, re, im)#
Construct a
ComplexIntervalFieldElement
for pickling.