Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit edec004

Browse files
author
Frédéric Chapoton
committed
trac 20099 details
1 parent 6e90839 commit edec004

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/sage/functions/log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def __init__(self):
7474
sage: exp(7*pi*I/2)
7575
-I
7676
77-
For the sake of simplification, the argument is reduced the
77+
For the sake of simplification, the argument is reduced modulo the
7878
period of the complex exponential function, `2\pi i`::
7979
8080
sage: k = var('k', domain='integer')

src/sage/functions/trig.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def __init__(self):
4444
sage: sin(k*pi)
4545
0
4646
47-
4847
TESTS::
4948
5049
sage: conjugate(sin(x))
@@ -160,11 +159,10 @@ def __init__(self):
160159
sage: cos(1 + 2*k*pi)
161160
cos(1)
162161
sage: cos(k*pi)
163-
(-1)^k
162+
cos(pi*k)
164163
sage: cos(pi/3 + 2*k*pi)
165164
1/2
166165
167-
168166
TESTS::
169167
170168
sage: conjugate(cos(x))

0 commit comments

Comments
 (0)