Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

578

579

580

581

582

583

584

585

586

587

588

589

590

591

592

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

624

625

626

627

628

629

630

631

632

633

634

635

636

637

638

639

640

641

642

643

644

645

646

647

648

649

650

651

652

653

654

655

656

657

658

659

660

661

662

663

664

665

666

667

668

669

670

671

672

673

674

675

676

677

678

679

680

681

682

683

684

685

686

687

688

689

690

691

692

693

694

695

696

697

698

699

700

701

702

703

704

705

706

707

708

709

710

711

712

713

714

715

716

717

718

719

720

721

722

723

724

725

726

727

728

729

730

731

732

733

734

735

736

737

738

739

740

741

742

743

744

745

746

747

748

749

750

751

752

753

754

755

756

757

758

759

760

761

762

763

764

765

766

767

768

769

770

771

772

773

774

775

776

777

778

779

780

781

782

783

784

785

786

787

788

789

790

791

792

793

794

795

796

797

798

799

800

801

802

803

804

805

806

807

808

809

810

811

812

813

814

815

816

817

818

819

820

821

822

823

824

825

826

827

828

829

830

831

832

833

834

835

836

837

838

839

840

841

842

843

844

845

846

847

848

849

850

851

852

853

854

855

856

857

858

859

860

861

862

863

864

865

866

867

868

869

870

871

872

873

874

875

876

877

878

879

880

881

882

883

884

885

886

887

888

889

890

891

892

893

894

895

896

897

898

899

900

901

902

903

904

905

906

907

908

909

910

911

912

913

914

915

916

917

918

919

920

921

922

923

924

925

926

927

928

929

930

931

932

933

934

935

936

937

938

939

940

941

942

943

944

945

946

947

948

949

950

951

952

953

954

955

956

957

958

959

960

961

962

963

964

965

966

967

968

969

970

971

972

973

974

975

976

977

978

979

980

981

982

983

984

985

986

987

988

989

990

991

992

993

994

995

996

997

998

999

1000

1001

1002

1003

1004

1005

1006

1007

1008

1009

1010

1011

1012

1013

1014

1015

1016

1017

1018

1019

1020

1021

1022

1023

1024

1025

1026

1027

1028

1029

1030

1031

1032

1033

1034

1035

1036

1037

1038

1039

1040

1041

1042

1043

1044

1045

1046

1047

1048

1049

1050

1051

1052

1053

1054

1055

1056

1057

1058

1059

1060

1061

1062

1063

1064

1065

1066

1067

1068

1069

1070

1071

1072

1073

1074

1075

1076

1077

1078

1079

1080

1081

1082

1083

1084

1085

1086

1087

1088

1089

1090

1091

1092

1093

1094

1095

1096

1097

1098

1099

1100

1101

1102

1103

1104

1105

1106

1107

1108

1109

1110

1111

1112

1113

1114

1115

1116

1117

1118

1119

1120

1121

1122

1123

1124

1125

1126

1127

1128

1129

1130

1131

1132

1133

1134

1135

1136

1137

1138

1139

1140

1141

1142

1143

1144

1145

1146

1147

1148

1149

1150

1151

1152

1153

1154

1155

1156

1157

1158

1159

1160

1161

1162

1163

1164

1165

1166

1167

1168

1169

1170

1171

1172

1173

1174

1175

1176

1177

1178

1179

1180

1181

1182

1183

1184

1185

1186

1187

1188

1189

1190

1191

1192

1193

1194

1195

1196

1197

1198

1199

1200

1201

1202

1203

1204

1205

1206

1207

1208

1209

1210

1211

1212

1213

1214

1215

1216

1217

1218

1219

1220

1221

1222

1223

1224

1225

1226

1227

1228

1229

1230

1231

1232

1233

1234

1235

1236

1237

1238

1239

1240

1241

1242

1243

1244

1245

1246

1247

1248

1249

1250

1251

1252

1253

1254

1255

1256

1257

1258

1259

1260

1261

1262

1263

1264

1265

1266

1267

1268

1269

1270

1271

1272

1273

1274

1275

1276

1277

1278

1279

1280

1281

1282

1283

1284

1285

1286

1287

1288

1289

1290

1291

1292

1293

1294

1295

1296

1297

1298

1299

1300

1301

1302

1303

1304

1305

1306

1307

1308

1309

1310

1311

1312

1313

1314

1315

1316

1317

1318

1319

1320

1321

1322

1323

1324

1325

1326

1327

1328

1329

1330

1331

1332

1333

1334

1335

1336

1337

1338

1339

1340

1341

1342

1343

1344

1345

1346

1347

1348

1349

1350

1351

1352

1353

1354

1355

1356

1357

1358

1359

1360

1361

1362

1363

1364

1365

1366

1367

1368

1369

1370

1371

1372

1373

1374

1375

1376

1377

1378

1379

1380

1381

1382

1383

1384

1385

1386

1387

1388

1389

1390

1391

1392

1393

1394

1395

1396

1397

1398

1399

1400

1401

1402

1403

1404

1405

1406

1407

1408

1409

1410

1411

1412

1413

1414

1415

1416

1417

1418

1419

1420

1421

1422

1423

1424

1425

1426

1427

1428

1429

1430

1431

1432

1433

1434

1435

1436

1437

1438

1439

1440

1441

1442

1443

1444

1445

1446

1447

1448

1449

1450

1451

1452

1453

1454

1455

1456

1457

1458

1459

1460

1461

1462

1463

1464

1465

1466

1467

1468

1469

1470

1471

1472

1473

1474

1475

1476

1477

1478

1479

1480

1481

1482

1483

1484

1485

1486

1487

1488

1489

1490

1491

1492

1493

1494

1495

1496

1497

1498

1499

1500

1501

1502

1503

1504

1505

1506

1507

1508

1509

1510

1511

1512

1513

1514

1515

1516

1517

1518

1519

1520

1521

1522

1523

1524

1525

1526

1527

1528

1529

1530

1531

1532

1533

1534

1535

1536

1537

1538

1539

1540

1541

1542

1543

1544

1545

1546

1547

1548

1549

1550

1551

1552

1553

1554

1555

1556

1557

1558

1559

1560

1561

1562

1563

1564

1565

1566

1567

1568

1569

1570

1571

1572

1573

1574

1575

1576

1577

1578

1579

1580

1581

1582

1583

1584

1585

1586

1587

1588

1589

1590

1591

1592

1593

1594

1595

1596

1597

1598

1599

1600

1601

1602

1603

1604

1605

1606

1607

1608

1609

1610

1611

1612

1613

1614

1615

1616

1617

1618

1619

1620

1621

1622

1623

1624

1625

1626

1627

1628

1629

1630

1631

1632

1633

1634

1635

1636

1637

1638

1639

1640

1641

1642

1643

1644

1645

1646

1647

1648

1649

1650

1651

1652

1653

1654

1655

1656

1657

1658

1659

1660

1661

1662

1663

1664

1665

1666

1667

1668

1669

1670

1671

1672

1673

1674

1675

1676

1677

1678

1679

1680

1681

1682

1683

1684

1685

1686

1687

1688

1689

1690

1691

1692

1693

1694

1695

1696

1697

1698

1699

1700

1701

1702

1703

1704

1705

1706

1707

1708

1709

1710

1711

1712

1713

1714

1715

1716

1717

1718

1719

1720

1721

1722

1723

1724

1725

1726

1727

1728

1729

1730

1731

1732

1733

1734

1735

1736

1737

1738

1739

1740

1741

1742

1743

1744

1745

1746

1747

1748

1749

1750

1751

1752

1753

1754

1755

1756

1757

1758

1759

1760

1761

1762

1763

1764

1765

1766

1767

1768

1769

1770

1771

1772

1773

1774

1775

1776

1777

1778

1779

1780

1781

1782

1783

1784

1785

1786

1787

1788

1789

1790

1791

1792

1793

1794

1795

1796

1797

1798

1799

1800

1801

1802

1803

1804

1805

1806

1807

1808

1809

1810

1811

1812

1813

1814

1815

1816

1817

1818

1819

1820

1821

1822

1823

1824

1825

1826

1827

1828

1829

1830

1831

1832

1833

1834

1835

1836

1837

1838

1839

1840

1841

1842

1843

1844

1845

1846

1847

1848

1849

1850

1851

1852

1853

1854

1855

1856

1857

1858

1859

1860

1861

1862

1863

1864

1865

1866

1867

1868

1869

1870

1871

1872

1873

1874

1875

1876

1877

1878

1879

1880

1881

1882

1883

1884

1885

1886

1887

1888

1889

1890

1891

1892

1893

1894

1895

1896

1897

1898

1899

1900

1901

1902

1903

1904

1905

1906

1907

1908

1909

1910

1911

1912

1913

1914

1915

1916

1917

1918

1919

1920

1921

1922

1923

1924

1925

1926

1927

1928

1929

1930

1931

1932

1933

1934

1935

1936

1937

1938

1939

1940

1941

1942

1943

1944

1945

1946

1947

1948

1949

1950

1951

1952

1953

1954

1955

1956

1957

1958

1959

1960

1961

1962

1963

1964

1965

1966

1967

1968

1969

1970

1971

1972

1973

1974

1975

1976

1977

1978

1979

1980

1981

1982

1983

1984

1985

1986

1987

1988

1989

1990

1991

1992

1993

1994

1995

1996

1997

1998

1999

2000

2001

2002

2003

2004

2005

2006

2007

2008

2009

2010

2011

2012

2013

2014

2015

2016

2017

2018

2019

2020

2021

2022

2023

2024

2025

2026

2027

2028

2029

2030

2031

2032

2033

2034

2035

2036

2037

2038

2039

2040

2041

2042

2043

2044

2045

2046

2047

2048

2049

2050

2051

2052

2053

2054

2055

2056

2057

2058

2059

2060

2061

2062

2063

2064

2065

2066

2067

2068

2069

2070

2071

2072

2073

2074

2075

2076

2077

2078

2079

2080

2081

2082

2083

2084

2085

2086

2087

2088

2089

2090

2091

2092

2093

2094

2095

2096

2097

2098

2099

2100

2101

2102

2103

2104

2105

2106

2107

2108

2109

2110

2111

2112

2113

2114

2115

2116

2117

2118

2119

2120

2121

2122

2123

2124

2125

2126

2127

2128

2129

2130

2131

2132

2133

2134

2135

2136

2137

2138

2139

2140

2141

2142

2143

2144

2145

2146

2147

2148

2149

2150

2151

2152

2153

2154

2155

2156

2157

2158

2159

2160

2161

2162

2163

2164

2165

2166

2167

2168

2169

2170

2171

2172

2173

2174

2175

2176

2177

2178

2179

2180

2181

2182

2183

2184

2185

2186

2187

2188

2189

2190

2191

2192

2193

2194

2195

2196

2197

2198

2199

2200

2201

2202

2203

2204

2205

2206

2207

2208

2209

2210

2211

2212

2213

2214

2215

2216

2217

2218

2219

2220

2221

2222

2223

2224

2225

2226

2227

2228

2229

2230

2231

2232

2233

2234

2235

2236

2237

2238

2239

2240

2241

2242

2243

2244

2245

2246

2247

2248

2249

2250

2251

2252

2253

2254

2255

2256

2257

2258

2259

2260

2261

2262

2263

2264

2265

2266

2267

2268

2269

2270

2271

2272

2273

2274

2275

2276

2277

2278

2279

2280

2281

2282

2283

2284

2285

2286

2287

2288

2289

2290

2291

2292

2293

2294

2295

2296

2297

2298

2299

2300

2301

2302

2303

2304

2305

2306

2307

2308

2309

2310

2311

2312

2313

2314

2315

2316

2317

2318

2319

2320

2321

2322

2323

2324

2325

2326

2327

2328

2329

2330

2331

2332

2333

2334

2335

2336

2337

2338

2339

2340

2341

2342

2343

2344

2345

2346

2347

2348

2349

2350

2351

2352

2353

2354

2355

2356

2357

2358

2359

2360

2361

2362

2363

2364

2365

2366

2367

2368

2369

2370

2371

2372

2373

2374

2375

2376

2377

2378

2379

2380

2381

2382

2383

2384

2385

2386

2387

2388

2389

2390

2391

2392

2393

2394

2395

2396

2397

2398

2399

2400

2401

2402

2403

2404

2405

2406

2407

2408

2409

2410

2411

2412

2413

2414

2415

2416

2417

2418

2419

2420

2421

2422

2423

2424

2425

2426

2427

2428

2429

2430

2431

2432

2433

2434

2435

2436

2437

2438

2439

2440

2441

2442

2443

2444

2445

2446

2447

2448

2449

2450

2451

2452

2453

2454

2455

2456

2457

2458

2459

2460

2461

2462

2463

2464

2465

2466

2467

2468

2469

2470

2471

2472

2473

2474

2475

2476

2477

2478

2479

2480

2481

2482

2483

2484

2485

2486

2487

2488

2489

2490

2491

2492

2493

2494

2495

2496

2497

2498

2499

2500

2501

2502

2503

2504

2505

2506

2507

2508

2509

2510

2511

2512

2513

2514

2515

2516

2517

2518

2519

2520

2521

2522

2523

2524

2525

2526

2527

2528

2529

2530

2531

2532

2533

2534

2535

2536

2537

2538

2539

2540

2541

2542

2543

2544

2545

2546

2547

2548

2549

2550

2551

2552

2553

2554

2555

2556

2557

2558

2559

2560

2561

2562

2563

2564

2565

2566

2567

2568

2569

2570

2571

2572

2573

2574

2575

2576

2577

2578

2579

2580

2581

2582

2583

2584

2585

2586

2587

2588

2589

2590

2591

2592

2593

2594

2595

2596

2597

2598

2599

2600

2601

2602

2603

2604

2605

2606

2607

2608

2609

2610

2611

2612

2613

2614

2615

2616

2617

2618

2619

2620

2621

2622

2623

2624

2625

2626

2627

2628

2629

2630

2631

2632

2633

2634

2635

2636

2637

2638

2639

2640

2641

2642

2643

2644

2645

2646

2647

2648

2649

2650

2651

2652

2653

2654

2655

2656

2657

2658

2659

2660

2661

2662

2663

2664

2665

2666

2667

2668

2669

2670

2671

2672

2673

2674

2675

2676

2677

2678

2679

2680

2681

2682

2683

2684

2685

2686

2687

2688

2689

2690

2691

2692

2693

2694

2695

2696

2697

2698

2699

2700

2701

2702

2703

2704

2705

2706

2707

2708

2709

2710

2711

2712

2713

2714

2715

2716

2717

2718

2719

2720

2721

2722

2723

2724

2725

2726

2727

2728

2729

2730

2731

2732

2733

2734

2735

2736

2737

2738

2739

2740

2741

2742

2743

2744

2745

2746

2747

2748

2749

2750

2751

2752

2753

2754

2755

2756

2757

2758

2759

2760

2761

2762

2763

2764

2765

2766

2767

2768

2769

2770

2771

2772

2773

2774

2775

2776

2777

2778

2779

2780

2781

from __future__ import print_function, division 

 

from sympy.core.add import Add 

from sympy.core.basic import sympify, cacheit 

from sympy.core.function import Function, ArgumentIndexError 

from sympy.core.numbers import igcdex, Rational, pi 

from sympy.core.singleton import S 

from sympy.core.symbol import Symbol, Wild 

from sympy.core.logic import fuzzy_not 

from sympy.functions.combinatorial.factorials import factorial, RisingFactorial 

from sympy.functions.elementary.miscellaneous import sqrt, Min, Max 

from sympy.functions.elementary.exponential import log, exp 

from sympy.functions.elementary.integers import floor 

from sympy.functions.elementary.hyperbolic import (acoth, asinh, atanh, cosh, 

coth, HyperbolicFunction, sinh, tanh) 

from sympy.sets.sets import FiniteSet 

from sympy.utilities.iterables import numbered_symbols 

from sympy.core.compatibility import range 

 

############################################################################### 

########################## TRIGONOMETRIC FUNCTIONS ############################ 

############################################################################### 

 

 

class TrigonometricFunction(Function): 

"""Base class for trigonometric functions. """ 

 

unbranched = True 

 

def _eval_is_rational(self): 

s = self.func(*self.args) 

if s.func == self.func: 

if s.args[0].is_rational and fuzzy_not(s.args[0].is_zero): 

return False 

else: 

return s.is_rational 

 

def _eval_is_algebraic(self): 

s = self.func(*self.args) 

if s.func == self.func: 

if fuzzy_not(self.args[0].is_zero) and self.args[0].is_algebraic: 

return False 

pi_coeff = _pi_coeff(self.args[0]) 

if pi_coeff is not None and pi_coeff.is_rational: 

return True 

else: 

return s.is_algebraic 

 

def _eval_expand_complex(self, deep=True, **hints): 

re_part, im_part = self.as_real_imag(deep=deep, **hints) 

return re_part + im_part*S.ImaginaryUnit 

 

def _as_real_imag(self, deep=True, **hints): 

if self.args[0].is_real: 

if deep: 

hints['complex'] = False 

return (self.args[0].expand(deep, **hints), S.Zero) 

else: 

return (self.args[0], S.Zero) 

if deep: 

re, im = self.args[0].expand(deep, **hints).as_real_imag() 

else: 

re, im = self.args[0].as_real_imag() 

return (re, im) 

 

def _period(self, general_period, symbol=None): 

f = self.args[0] 

if symbol is None: 

symbol = tuple(f.free_symbols)[0] 

 

if not f.has(symbol): 

return S.Zero 

 

if f == symbol: 

return general_period 

 

if symbol in f.free_symbols: 

p, q = Wild('p'), Wild('q') 

if f.is_Mul: 

g, h = f.as_independent(symbol) 

if h == symbol: 

return general_period/abs(g) 

 

if f.is_Add: 

a, h = f.as_independent(symbol) 

g, h = h.as_independent(symbol, as_Add=False) 

if h == symbol: 

return general_period/abs(g) 

 

raise NotImplementedError("Use the periodicity function instead.") 

 

 

def _peeloff_pi(arg): 

""" 

Split ARG into two parts, a "rest" and a multiple of pi/2. 

This assumes ARG to be an Add. 

The multiple of pi returned in the second position is always a Rational. 

 

Examples 

======== 

 

>>> from sympy.functions.elementary.trigonometric import _peeloff_pi as peel 

>>> from sympy import pi 

>>> from sympy.abc import x, y 

>>> peel(x + pi/2) 

(x, pi/2) 

>>> peel(x + 2*pi/3 + pi*y) 

(x + pi*y + pi/6, pi/2) 

""" 

for a in Add.make_args(arg): 

if a is S.Pi: 

K = S.One 

break 

elif a.is_Mul: 

K, p = a.as_two_terms() 

if p is S.Pi and K.is_Rational: 

break 

else: 

return arg, S.Zero 

 

m1 = (K % S.Half) * S.Pi 

m2 = K*S.Pi - m1 

return arg - m2, m2 

 

 

def _pi_coeff(arg, cycles=1): 

""" 

When arg is a Number times pi (e.g. 3*pi/2) then return the Number 

normalized to be in the range [0, 2], else None. 

 

When an even multiple of pi is encountered, if it is multiplying 

something with known parity then the multiple is returned as 0 otherwise 

as 2. 

 

Examples 

======== 

 

>>> from sympy.functions.elementary.trigonometric import _pi_coeff as coeff 

>>> from sympy import pi, Dummy 

>>> from sympy.abc import x, y 

>>> coeff(3*x*pi) 

3*x 

>>> coeff(11*pi/7) 

11/7 

>>> coeff(-11*pi/7) 

3/7 

>>> coeff(4*pi) 

0 

>>> coeff(5*pi) 

1 

>>> coeff(5.0*pi) 

1 

>>> coeff(5.5*pi) 

3/2 

>>> coeff(2 + pi) 

 

>>> coeff(2*Dummy(integer=True)*pi) 

2 

>>> coeff(2*Dummy(even=True)*pi) 

0 

""" 

arg = sympify(arg) 

if arg is S.Pi: 

return S.One 

elif not arg: 

return S.Zero 

elif arg.is_Mul: 

cx = arg.coeff(S.Pi) 

if cx: 

c, x = cx.as_coeff_Mul() # pi is not included as coeff 

if c.is_Float: 

# recast exact binary fractions to Rationals 

f = abs(c) % 1 

if f != 0: 

p = -int(round(log(f, 2).evalf())) 

m = 2**p 

cm = c*m 

i = int(cm) 

if i == cm: 

c = Rational(i, m) 

cx = c*x 

else: 

c = Rational(int(c)) 

cx = c*x 

if x.is_integer: 

c2 = c % 2 

if c2 == 1: 

return x 

elif not c2: 

if x.is_even is not None: # known parity 

return S.Zero 

return S(2) 

else: 

return c2*x 

return cx 

 

 

class sin(TrigonometricFunction): 

""" 

The sine function. 

 

Returns the sine of x (measured in radians). 

 

Notes 

===== 

 

This function will evaluate automatically in the 

case x/pi is some rational number [4]_. For example, 

if x is a multiple of pi, pi/2, pi/3, pi/4 and pi/6. 

 

Examples 

======== 

 

>>> from sympy import sin, pi 

>>> from sympy.abc import x 

>>> sin(x**2).diff(x) 

2*x*cos(x**2) 

>>> sin(1).diff(x) 

0 

>>> sin(pi) 

0 

>>> sin(pi/2) 

1 

>>> sin(pi/6) 

1/2 

>>> sin(pi/12) 

-sqrt(2)/4 + sqrt(6)/4 

 

 

See Also 

======== 

 

csc, cos, sec, tan, cot 

asin, acsc, acos, asec, atan, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.14 

.. [3] http://functions.wolfram.com/ElementaryFunctions/Sin 

.. [4] http://mathworld.wolfram.com/TrigonometryAngles.html 

""" 

 

def period(self, symbol=None): 

return self._period(2*pi, symbol) 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return cos(self.args[0]) 

else: 

raise ArgumentIndexError(self, argindex) 

 

@classmethod 

def eval(cls, arg): 

from sympy.calculus import AccumBounds 

if arg.is_Number: 

if arg is S.NaN: 

return S.NaN 

elif arg is S.Zero: 

return S.Zero 

elif arg is S.Infinity or arg is S.NegativeInfinity: 

return AccumBounds(-1, 1) 

 

if isinstance(arg, AccumBounds): 

min, max = arg.min, arg.max 

d = floor(min/(2*S.Pi)) 

if min is not S.NegativeInfinity: 

min = min - d*2*S.Pi 

if max is not S.Infinity: 

max = max - d*2*S.Pi 

if AccumBounds(min, max).intersection(FiniteSet(S.Pi/2, 5*S.Pi/2)) \ 

is not S.EmptySet and \ 

AccumBounds(min, max).intersection(FiniteSet(3*S.Pi/2, 

7*S.Pi/2)) is not S.EmptySet: 

return AccumBounds(-1, 1) 

elif AccumBounds(min, max).intersection(FiniteSet(S.Pi/2, 5*S.Pi/2)) \ 

is not S.EmptySet: 

return AccumBounds(Min(sin(min), sin(max)), 1) 

elif AccumBounds(min, max).intersection(FiniteSet(3*S.Pi/2, 8*S.Pi/2)) \ 

is not S.EmptySet: 

return AccumBounds(-1, Max(sin(min), sin(max))) 

else: 

return AccumBounds(Min(sin(min), sin(max)), 

Max(sin(min), sin(max))) 

 

if arg.could_extract_minus_sign(): 

return -cls(-arg) 

 

i_coeff = arg.as_coefficient(S.ImaginaryUnit) 

if i_coeff is not None: 

return S.ImaginaryUnit * sinh(i_coeff) 

 

pi_coeff = _pi_coeff(arg) 

if pi_coeff is not None: 

if pi_coeff.is_integer: 

return S.Zero 

 

if (2*pi_coeff).is_integer: 

if pi_coeff.is_even: 

return S.Zero 

elif pi_coeff.is_even is False: 

return S.NegativeOne**(pi_coeff - S.Half) 

 

if not pi_coeff.is_Rational: 

narg = pi_coeff*S.Pi 

if narg != arg: 

return cls(narg) 

return None 

 

# https://github.com/sympy/sympy/issues/6048 

# transform a sine to a cosine, to avoid redundant code 

if pi_coeff.is_Rational: 

x = pi_coeff % 2 

if x > 1: 

return -cls((x % 1)*S.Pi) 

if 2*x > 1: 

return cls((1 - x)*S.Pi) 

narg = ((pi_coeff + Rational(3, 2)) % 2)*S.Pi 

result = cos(narg) 

if not isinstance(result, cos): 

return result 

if pi_coeff*S.Pi != arg: 

return cls(pi_coeff*S.Pi) 

return None 

 

if arg.is_Add: 

x, m = _peeloff_pi(arg) 

if m: 

return sin(m)*cos(x) + cos(m)*sin(x) 

 

if arg.func is asin: 

return arg.args[0] 

 

if arg.func is atan: 

x = arg.args[0] 

return x / sqrt(1 + x**2) 

 

if arg.func is atan2: 

y, x = arg.args 

return y / sqrt(x**2 + y**2) 

 

if arg.func is acos: 

x = arg.args[0] 

return sqrt(1 - x**2) 

 

if arg.func is acot: 

x = arg.args[0] 

return 1 / (sqrt(1 + 1 / x**2) * x) 

 

@staticmethod 

@cacheit 

def taylor_term(n, x, *previous_terms): 

if n < 0 or n % 2 == 0: 

return S.Zero 

else: 

x = sympify(x) 

 

if len(previous_terms) > 2: 

p = previous_terms[-2] 

return -p * x**2 / (n*(n - 1)) 

else: 

return (-1)**(n//2) * x**(n)/factorial(n) 

 

def _eval_rewrite_as_exp(self, arg): 

I = S.ImaginaryUnit 

if isinstance(arg, TrigonometricFunction) or isinstance(arg, HyperbolicFunction): 

arg = arg.func(arg.args[0]).rewrite(exp) 

return (exp(arg*I) - exp(-arg*I)) / (2*I) 

 

def _eval_rewrite_as_Pow(self, arg): 

if arg.func is log: 

I = S.ImaginaryUnit 

x = arg.args[0] 

return I*x**-I / 2 - I*x**I /2 

 

def _eval_rewrite_as_cos(self, arg): 

return cos(arg - S.Pi / 2, evaluate=False) 

 

def _eval_rewrite_as_tan(self, arg): 

tan_half = tan(S.Half*arg) 

return 2*tan_half/(1 + tan_half**2) 

 

def _eval_rewrite_as_sincos(self, arg): 

return sin(arg)*cos(arg)/cos(arg) 

 

def _eval_rewrite_as_cot(self, arg): 

cot_half = cot(S.Half*arg) 

return 2*cot_half/(1 + cot_half**2) 

 

def _eval_rewrite_as_pow(self, arg): 

return self.rewrite(cos).rewrite(pow) 

 

def _eval_rewrite_as_sqrt(self, arg): 

return self.rewrite(cos).rewrite(sqrt) 

 

def _eval_rewrite_as_csc(self, arg): 

return 1/csc(arg) 

 

def _eval_rewrite_as_sec(self, arg): 

return 1 / sec(arg - S.Pi / 2, evaluate=False) 

 

def _eval_conjugate(self): 

return self.func(self.args[0].conjugate()) 

 

def as_real_imag(self, deep=True, **hints): 

re, im = self._as_real_imag(deep=deep, **hints) 

return (sin(re)*cosh(im), cos(re)*sinh(im)) 

 

def _eval_expand_trig(self, **hints): 

from sympy import expand_mul 

from sympy.functions.special.polynomials import chebyshevt, chebyshevu 

arg = self.args[0] 

x = None 

if arg.is_Add: # TODO, implement more if deep stuff here 

# TODO: Do this more efficiently for more than two terms 

x, y = arg.as_two_terms() 

sx = sin(x, evaluate=False)._eval_expand_trig() 

sy = sin(y, evaluate=False)._eval_expand_trig() 

cx = cos(x, evaluate=False)._eval_expand_trig() 

cy = cos(y, evaluate=False)._eval_expand_trig() 

return sx*cy + sy*cx 

else: 

n, x = arg.as_coeff_Mul(rational=True) 

if n.is_Integer: # n will be positive because of .eval 

# canonicalization 

 

# See http://mathworld.wolfram.com/Multiple-AngleFormulas.html 

if n.is_odd: 

return (-1)**((n - 1)/2)*chebyshevt(n, sin(x)) 

else: 

return expand_mul((-1)**(n/2 - 1)*cos(x)*chebyshevu(n - 

1, sin(x)), deep=False) 

pi_coeff = _pi_coeff(arg) 

if pi_coeff is not None: 

if pi_coeff.is_Rational: 

return self.rewrite(sqrt) 

return sin(arg) 

 

def _eval_as_leading_term(self, x): 

from sympy import Order 

arg = self.args[0].as_leading_term(x) 

 

if x in arg.free_symbols and Order(1, x).contains(arg): 

return arg 

else: 

return self.func(arg) 

 

def _eval_is_real(self): 

return self.args[0].is_real 

 

def _eval_is_finite(self): 

arg = self.args[0] 

if arg.is_real: 

return True 

 

 

class cos(TrigonometricFunction): 

""" 

The cosine function. 

 

Returns the cosine of x (measured in radians). 

 

Notes 

===== 

 

See :func:`sin` for notes about automatic evaluation. 

 

Examples 

======== 

 

>>> from sympy import cos, pi 

>>> from sympy.abc import x 

>>> cos(x**2).diff(x) 

-2*x*sin(x**2) 

>>> cos(1).diff(x) 

0 

>>> cos(pi) 

-1 

>>> cos(pi/2) 

0 

>>> cos(2*pi/3) 

-1/2 

>>> cos(pi/12) 

sqrt(2)/4 + sqrt(6)/4 

 

See Also 

======== 

 

sin, csc, sec, tan, cot 

asin, acsc, acos, asec, atan, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.14 

.. [3] http://functions.wolfram.com/ElementaryFunctions/Cos 

""" 

 

def period(self, symbol=None): 

return self._period(2*pi, symbol) 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return -sin(self.args[0]) 

else: 

raise ArgumentIndexError(self, argindex) 

 

@classmethod 

def eval(cls, arg): 

from sympy.functions.special.polynomials import chebyshevt 

from sympy.calculus.util import AccumBounds 

if arg.is_Number: 

if arg is S.NaN: 

return S.NaN 

elif arg is S.Zero: 

return S.One 

elif arg is S.Infinity or arg is S.NegativeInfinity: 

# In this case it is better to return AccumBounds(-1, 1) 

# rather than returning S.NaN, since AccumBounds(-1, 1) 

# preserves the information that sin(oo) is between 

# -1 and 1, where S.NaN does not do that. 

return AccumBounds(-1, 1) 

 

if isinstance(arg, AccumBounds): 

return sin(arg + S.Pi/2) 

 

if arg.could_extract_minus_sign(): 

return cls(-arg) 

 

i_coeff = arg.as_coefficient(S.ImaginaryUnit) 

if i_coeff is not None: 

return cosh(i_coeff) 

 

pi_coeff = _pi_coeff(arg) 

if pi_coeff is not None: 

if pi_coeff.is_integer: 

return (S.NegativeOne)**pi_coeff 

 

if (2*pi_coeff).is_integer: 

if pi_coeff.is_even: 

return (S.NegativeOne)**(pi_coeff/2) 

elif pi_coeff.is_even is False: 

return S.Zero 

 

if not pi_coeff.is_Rational: 

narg = pi_coeff*S.Pi 

if narg != arg: 

return cls(narg) 

return None 

 

# cosine formula ##################### 

# https://github.com/sympy/sympy/issues/6048 

# explicit calculations are preformed for 

# cos(k pi/n) for n = 8,10,12,15,20,24,30,40,60,120 

# Some other exact values like cos(k pi/240) can be 

# calculated using a partial-fraction decomposition 

# by calling cos( X ).rewrite(sqrt) 

cst_table_some = { 

3: S.Half, 

5: (sqrt(5) + 1)/4, 

} 

if pi_coeff.is_Rational: 

q = pi_coeff.q 

p = pi_coeff.p % (2*q) 

if p > q: 

narg = (pi_coeff - 1)*S.Pi 

return -cls(narg) 

if 2*p > q: 

narg = (1 - pi_coeff)*S.Pi 

return -cls(narg) 

 

# If nested sqrt's are worse than un-evaluation 

# you can require q to be in (1, 2, 3, 4, 6, 12) 

# q <= 12, q=15, q=20, q=24, q=30, q=40, q=60, q=120 return 

# expressions with 2 or fewer sqrt nestings. 

table2 = { 

12: (3, 4), 

20: (4, 5), 

30: (5, 6), 

15: (6, 10), 

24: (6, 8), 

40: (8, 10), 

60: (20, 30), 

120: (40, 60) 

} 

if q in table2: 

a, b = p*S.Pi/table2[q][0], p*S.Pi/table2[q][1] 

nvala, nvalb = cls(a), cls(b) 

if None == nvala or None == nvalb: 

return None 

return nvala*nvalb + cls(S.Pi/2 - a)*cls(S.Pi/2 - b) 

 

if q > 12: 

return None 

 

if q in cst_table_some: 

cts = cst_table_some[pi_coeff.q] 

return chebyshevt(pi_coeff.p, cts).expand() 

 

if 0 == q % 2: 

narg = (pi_coeff*2)*S.Pi 

nval = cls(narg) 

if None == nval: 

return None 

x = (2*pi_coeff + 1)/2 

sign_cos = (-1)**((-1 if x < 0 else 1)*int(abs(x))) 

return sign_cos*sqrt( (1 + nval)/2 ) 

return None 

 

if arg.is_Add: 

x, m = _peeloff_pi(arg) 

if m: 

return cos(m)*cos(x) - sin(m)*sin(x) 

 

if arg.func is acos: 

return arg.args[0] 

 

if arg.func is atan: 

x = arg.args[0] 

return 1 / sqrt(1 + x**2) 

 

if arg.func is atan2: 

y, x = arg.args 

return x / sqrt(x**2 + y**2) 

 

if arg.func is asin: 

x = arg.args[0] 

return sqrt(1 - x ** 2) 

 

if arg.func is acot: 

x = arg.args[0] 

return 1 / sqrt(1 + 1 / x**2) 

 

@staticmethod 

@cacheit 

def taylor_term(n, x, *previous_terms): 

if n < 0 or n % 2 == 1: 

return S.Zero 

else: 

x = sympify(x) 

 

if len(previous_terms) > 2: 

p = previous_terms[-2] 

return -p * x**2 / (n*(n - 1)) 

else: 

return (-1)**(n//2)*x**(n)/factorial(n) 

 

def _eval_rewrite_as_exp(self, arg): 

I = S.ImaginaryUnit 

if isinstance(arg, TrigonometricFunction) or isinstance(arg, HyperbolicFunction): 

arg = arg.func(arg.args[0]).rewrite(exp) 

return (exp(arg*I) + exp(-arg*I)) / 2 

 

def _eval_rewrite_as_Pow(self, arg): 

if arg.func is log: 

I = S.ImaginaryUnit 

x = arg.args[0] 

return x**I/2 + x**-I/2 

 

def _eval_rewrite_as_sin(self, arg): 

return sin(arg + S.Pi / 2, evaluate=False) 

 

def _eval_rewrite_as_tan(self, arg): 

tan_half = tan(S.Half*arg)**2 

return (1 - tan_half)/(1 + tan_half) 

 

def _eval_rewrite_as_sincos(self, arg): 

return sin(arg)*cos(arg)/sin(arg) 

 

def _eval_rewrite_as_cot(self, arg): 

cot_half = cot(S.Half*arg)**2 

return (cot_half - 1)/(cot_half + 1) 

 

def _eval_rewrite_as_pow(self, arg): 

return self._eval_rewrite_as_sqrt(arg) 

 

def _eval_rewrite_as_sqrt(self, arg): 

from sympy.functions.special.polynomials import chebyshevt 

 

def migcdex(x): 

# recursive calcuation of gcd and linear combination 

# for a sequence of integers. 

# Given (x1, x2, x3) 

# Returns (y1, y1, y3, g) 

# such that g is the gcd and x1*y1+x2*y2+x3*y3 - g = 0 

# Note, that this is only one such linear combination. 

if len(x) == 1: 

return (1, x[0]) 

if len(x) == 2: 

return igcdex(x[0], x[-1]) 

g = migcdex(x[1:]) 

u, v, h = igcdex(x[0], g[-1]) 

return tuple([u] + [v*i for i in g[0:-1] ] + [h]) 

 

def ipartfrac(r, factors=None): 

from sympy.ntheory import factorint 

if isinstance(r, int): 

return r 

if not isinstance(r, Rational): 

raise TypeError("r is not rational") 

n = r.q 

if 2 > r.q*r.q: 

return r.q 

 

if None == factors: 

a = [n//x**y for x, y in factorint(r.q).items()] 

else: 

a = [n//x for x in factors] 

if len(a) == 1: 

return [ r ] 

h = migcdex(a) 

ans = [ r.p*Rational(i*j, r.q) for i, j in zip(h[:-1], a) ] 

assert r == sum(ans) 

return ans 

pi_coeff = _pi_coeff(arg) 

if pi_coeff is None: 

return None 

 

if pi_coeff.is_integer: 

# it was unevaluated 

return self.func(pi_coeff*S.Pi) 

 

if not pi_coeff.is_Rational: 

return None 

 

def _cospi257(): 

""" Express cos(pi/257) explicitly as a function of radicals 

Based upon the equations in 

http://math.stackexchange.com/questions/516142/how-does-cos2-pi-257-look-like-in-real-radicals 

See also http://www.susqu.edu/brakke/constructions/257-gon.m.txt 

""" 

def f1(a, b): 

return (a + sqrt(a**2 + b))/2, (a - sqrt(a**2 + b))/2 

 

def f2(a, b): 

return (a - sqrt(a**2 + b))/2 

 

t1, t2 = f1(-1, 256) 

z1, z3 = f1(t1, 64) 

z2, z4 = f1(t2, 64) 

y1, y5 = f1(z1, 4*(5 + t1 + 2*z1)) 

y6, y2 = f1(z2, 4*(5 + t2 + 2*z2)) 

y3, y7 = f1(z3, 4*(5 + t1 + 2*z3)) 

y8, y4 = f1(z4, 4*(5 + t2 + 2*z4)) 

x1, x9 = f1(y1, -4*(t1 + y1 + y3 + 2*y6)) 

x2, x10 = f1(y2, -4*(t2 + y2 + y4 + 2*y7)) 

x3, x11 = f1(y3, -4*(t1 + y3 + y5 + 2*y8)) 

x4, x12 = f1(y4, -4*(t2 + y4 + y6 + 2*y1)) 

x5, x13 = f1(y5, -4*(t1 + y5 + y7 + 2*y2)) 

x6, x14 = f1(y6, -4*(t2 + y6 + y8 + 2*y3)) 

x15, x7 = f1(y7, -4*(t1 + y7 + y1 + 2*y4)) 

x8, x16 = f1(y8, -4*(t2 + y8 + y2 + 2*y5)) 

v1 = f2(x1, -4*(x1 + x2 + x3 + x6)) 

v2 = f2(x2, -4*(x2 + x3 + x4 + x7)) 

v3 = f2(x8, -4*(x8 + x9 + x10 + x13)) 

v4 = f2(x9, -4*(x9 + x10 + x11 + x14)) 

v5 = f2(x10, -4*(x10 + x11 + x12 + x15)) 

v6 = f2(x16, -4*(x16 + x1 + x2 + x5)) 

u1 = -f2(-v1, -4*(v2 + v3)) 

u2 = -f2(-v4, -4*(v5 + v6)) 

w1 = -2*f2(-u1, -4*u2) 

return sqrt(sqrt(2)*sqrt(w1 + 4)/8 + S.Half) 

 

cst_table_some = { 

3: S.Half, 

5: (sqrt(5) + 1)/4, 

17: sqrt((15 + sqrt(17))/32 + sqrt(2)*(sqrt(17 - sqrt(17)) + 

sqrt(sqrt(2)*(-8*sqrt(17 + sqrt(17)) - (1 - sqrt(17)) 

*sqrt(17 - sqrt(17))) + 6*sqrt(17) + 34))/32), 

257: _cospi257() 

# 65537 is the only other known Fermat prime and the very 

# large expression is intentionally omitted from SymPy; see 

# http://www.susqu.edu/brakke/constructions/65537-gon.m.txt 

} 

 

def _fermatCoords(n): 

# if n can be factored in terms of Fermat primes with 

# multiplicity of each being 1, return those primes, else 

# False 

from sympy import chebyshevt 

primes = [] 

for p_i in cst_table_some: 

n, r = divmod(n, p_i) 

if not r: 

primes.append(p_i) 

if n == 1: 

return tuple(primes) 

return False 

 

if pi_coeff.q in cst_table_some: 

rv = chebyshevt(pi_coeff.p, cst_table_some[pi_coeff.q]) 

if pi_coeff.q < 257: 

rv = rv.expand() 

return rv 

 

if not pi_coeff.q % 2: # recursively remove factors of 2 

pico2 = pi_coeff*2 

nval = cos(pico2*S.Pi).rewrite(sqrt) 

x = (pico2 + 1)/2 

sign_cos = -1 if int(x) % 2 else 1 

return sign_cos*sqrt( (1 + nval)/2 ) 

 

FC = _fermatCoords(pi_coeff.q) 

if FC: 

decomp = ipartfrac(pi_coeff, FC) 

X = [(x[1], x[0]*S.Pi) for x in zip(decomp, numbered_symbols('z'))] 

pcls = cos(sum([x[0] for x in X]))._eval_expand_trig().subs(X) 

return pcls.rewrite(sqrt) 

else: 

decomp = ipartfrac(pi_coeff) 

X = [(x[1], x[0]*S.Pi) for x in zip(decomp, numbered_symbols('z'))] 

pcls = cos(sum([x[0] for x in X]))._eval_expand_trig().subs(X) 

return pcls 

 

def _eval_rewrite_as_sec(self, arg): 

return 1/sec(arg) 

 

def _eval_rewrite_as_csc(self, arg): 

return 1 / sec(arg)._eval_rewrite_as_csc(arg) 

 

def _eval_conjugate(self): 

return self.func(self.args[0].conjugate()) 

 

def as_real_imag(self, deep=True, **hints): 

re, im = self._as_real_imag(deep=deep, **hints) 

return (cos(re)*cosh(im), -sin(re)*sinh(im)) 

 

def _eval_expand_trig(self, **hints): 

from sympy.functions.special.polynomials import chebyshevt 

arg = self.args[0] 

x = None 

if arg.is_Add: # TODO: Do this more efficiently for more than two terms 

x, y = arg.as_two_terms() 

sx = sin(x, evaluate=False)._eval_expand_trig() 

sy = sin(y, evaluate=False)._eval_expand_trig() 

cx = cos(x, evaluate=False)._eval_expand_trig() 

cy = cos(y, evaluate=False)._eval_expand_trig() 

return cx*cy - sx*sy 

else: 

coeff, terms = arg.as_coeff_Mul(rational=True) 

if coeff.is_Integer: 

return chebyshevt(coeff, cos(terms)) 

pi_coeff = _pi_coeff(arg) 

if pi_coeff is not None: 

if pi_coeff.is_Rational: 

return self.rewrite(sqrt) 

return cos(arg) 

 

def _eval_as_leading_term(self, x): 

from sympy import Order 

arg = self.args[0].as_leading_term(x) 

 

if x in arg.free_symbols and Order(1, x).contains(arg): 

return S.One 

else: 

return self.func(arg) 

 

def _eval_is_real(self): 

return self.args[0].is_real 

 

def _eval_is_finite(self): 

arg = self.args[0] 

 

if arg.is_real: 

return True 

 

 

class tan(TrigonometricFunction): 

""" 

The tangent function. 

 

Returns the tangent of x (measured in radians). 

 

Notes 

===== 

 

See :func:`sin` for notes about automatic evaluation. 

 

Examples 

======== 

 

>>> from sympy import tan, pi 

>>> from sympy.abc import x 

>>> tan(x**2).diff(x) 

2*x*(tan(x**2)**2 + 1) 

>>> tan(1).diff(x) 

0 

>>> tan(pi/8).expand() 

-1 + sqrt(2) 

 

See Also 

======== 

 

sin, csc, cos, sec, cot 

asin, acsc, acos, asec, atan, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.14 

.. [3] http://functions.wolfram.com/ElementaryFunctions/Tan 

""" 

 

def period(self, symbol=None): 

return self._period(pi, symbol) 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return S.One + self**2 

else: 

raise ArgumentIndexError(self, argindex) 

 

def inverse(self, argindex=1): 

""" 

Returns the inverse of this function. 

""" 

return atan 

 

@classmethod 

def eval(cls, arg): 

from sympy.calculus.util import AccumBounds 

if arg.is_Number: 

if arg is S.NaN: 

return S.NaN 

elif arg is S.Zero: 

return S.Zero 

elif arg is S.Infinity or arg is S.NegativeInfinity: 

return AccumBounds(S.NegativeInfinity, S.Infinity) 

 

if isinstance(arg, AccumBounds): 

min, max = arg.min, arg.max 

d = floor(min/S.Pi) 

if min is not S.NegativeInfinity: 

min = min - d*S.Pi 

if max is not S.Infinity: 

max = max - d*S.Pi 

if AccumBounds(min, max).intersection(FiniteSet(S.Pi/2, 3*S.Pi/2)): 

return AccumBounds(S.NegativeInfinity, S.Infinity) 

else: 

return AccumBounds(tan(min), tan(max)) 

 

if arg.could_extract_minus_sign(): 

return -cls(-arg) 

 

i_coeff = arg.as_coefficient(S.ImaginaryUnit) 

if i_coeff is not None: 

return S.ImaginaryUnit * tanh(i_coeff) 

 

pi_coeff = _pi_coeff(arg, 2) 

if pi_coeff is not None: 

if pi_coeff.is_integer: 

return S.Zero 

 

if not pi_coeff.is_Rational: 

narg = pi_coeff*S.Pi 

if narg != arg: 

return cls(narg) 

return None 

 

if pi_coeff.is_Rational: 

if not pi_coeff.q % 2: 

narg = pi_coeff*S.Pi*2 

cresult, sresult = cos(narg), cos(narg - S.Pi/2) 

if not isinstance(cresult, cos) \ 

and not isinstance(sresult, cos): 

if sresult == 0: 

return S.ComplexInfinity 

return (1 - cresult)/sresult 

table2 = { 

12: (3, 4), 

20: (4, 5), 

30: (5, 6), 

15: (6, 10), 

24: (6, 8), 

40: (8, 10), 

60: (20, 30), 

120: (40, 60) 

} 

q = pi_coeff.q 

p = pi_coeff.p % q 

if q in table2: 

nvala, nvalb = cls(p*S.Pi/table2[q][0]), cls(p*S.Pi/table2[q][1]) 

if None == nvala or None == nvalb: 

return None 

return (nvala - nvalb)/(1 + nvala*nvalb) 

narg = ((pi_coeff + S.Half) % 1 - S.Half)*S.Pi 

# see cos() to specify which expressions should be 

# expanded automatically in terms of radicals 

cresult, sresult = cos(narg), cos(narg - S.Pi/2) 

if not isinstance(cresult, cos) \ 

and not isinstance(sresult, cos): 

if cresult == 0: 

return S.ComplexInfinity 

return (sresult/cresult) 

if narg != arg: 

return cls(narg) 

 

if arg.is_Add: 

x, m = _peeloff_pi(arg) 

if m: 

tanm = tan(m) 

tanx = tan(x) 

if tanm is S.ComplexInfinity: 

return -cot(x) 

return (tanm + tanx)/(1 - tanm*tanx) 

 

if arg.func is atan: 

return arg.args[0] 

 

if arg.func is atan2: 

y, x = arg.args 

return y/x 

 

if arg.func is asin: 

x = arg.args[0] 

return x / sqrt(1 - x**2) 

 

if arg.func is acos: 

x = arg.args[0] 

return sqrt(1 - x**2) / x 

 

if arg.func is acot: 

x = arg.args[0] 

return 1 / x 

 

@staticmethod 

@cacheit 

def taylor_term(n, x, *previous_terms): 

from sympy import bernoulli 

if n < 0 or n % 2 == 0: 

return S.Zero 

else: 

x = sympify(x) 

 

a, b = ((n - 1)//2), 2**(n + 1) 

 

B = bernoulli(n + 1) 

F = factorial(n + 1) 

 

return (-1)**a * b*(b - 1) * B/F * x**n 

 

def _eval_nseries(self, x, n, logx): 

i = self.args[0].limit(x, 0)*2/S.Pi 

if i and i.is_Integer: 

return self.rewrite(cos)._eval_nseries(x, n=n, logx=logx) 

return Function._eval_nseries(self, x, n=n, logx=logx) 

 

def _eval_rewrite_as_Pow(self, arg): 

if arg.func is log: 

I = S.ImaginaryUnit 

x = arg.args[0] 

return I*(x**-I - x**I)/(x**-I + x**I) 

 

def _eval_conjugate(self): 

return self.func(self.args[0].conjugate()) 

 

def as_real_imag(self, deep=True, **hints): 

re, im = self._as_real_imag(deep=deep, **hints) 

if im: 

denom = cos(2*re) + cosh(2*im) 

return (sin(2*re)/denom, sinh(2*im)/denom) 

else: 

return (self.func(re), S.Zero) 

 

def _eval_expand_trig(self, **hints): 

from sympy import im, re 

arg = self.args[0] 

x = None 

if arg.is_Add: 

from sympy import symmetric_poly 

n = len(arg.args) 

TX = [] 

for x in arg.args: 

tx = tan(x, evaluate=False)._eval_expand_trig() 

TX.append(tx) 

 

Yg = numbered_symbols('Y') 

Y = [ next(Yg) for i in range(n) ] 

 

p = [0, 0] 

for i in range(n + 1): 

p[1 - i % 2] += symmetric_poly(i, Y)*(-1)**((i % 4)//2) 

return (p[0]/p[1]).subs(list(zip(Y, TX))) 

 

else: 

coeff, terms = arg.as_coeff_Mul(rational=True) 

if coeff.is_Integer and coeff > 1: 

I = S.ImaginaryUnit 

z = Symbol('dummy', real=True) 

P = ((1 + I*z)**coeff).expand() 

return (im(P)/re(P)).subs([(z, tan(terms))]) 

return tan(arg) 

 

def _eval_rewrite_as_exp(self, arg): 

I = S.ImaginaryUnit 

if isinstance(arg, TrigonometricFunction) or isinstance(arg, HyperbolicFunction): 

arg = arg.func(arg.args[0]).rewrite(exp) 

neg_exp, pos_exp = exp(-arg*I), exp(arg*I) 

return I*(neg_exp - pos_exp)/(neg_exp + pos_exp) 

 

def _eval_rewrite_as_sin(self, x): 

return 2*sin(x)**2/sin(2*x) 

 

def _eval_rewrite_as_cos(self, x): 

return cos(x - S.Pi / 2, evaluate=False) / cos(x) 

 

def _eval_rewrite_as_sincos(self, arg): 

return sin(arg)/cos(arg) 

 

def _eval_rewrite_as_cot(self, arg): 

return 1/cot(arg) 

 

def _eval_rewrite_as_sec(self, arg): 

sin_in_sec_form = sin(arg)._eval_rewrite_as_sec(arg) 

cos_in_sec_form = cos(arg)._eval_rewrite_as_sec(arg) 

return sin_in_sec_form / cos_in_sec_form 

 

def _eval_rewrite_as_csc(self, arg): 

sin_in_csc_form = sin(arg)._eval_rewrite_as_csc(arg) 

cos_in_csc_form = cos(arg)._eval_rewrite_as_csc(arg) 

return sin_in_csc_form / cos_in_csc_form 

 

def _eval_rewrite_as_pow(self, arg): 

y = self.rewrite(cos).rewrite(pow) 

if y.has(cos): 

return None 

return y 

 

def _eval_rewrite_as_sqrt(self, arg): 

y = self.rewrite(cos).rewrite(sqrt) 

if y.has(cos): 

return None 

return y 

 

def _eval_as_leading_term(self, x): 

from sympy import Order 

arg = self.args[0].as_leading_term(x) 

 

if x in arg.free_symbols and Order(1, x).contains(arg): 

return arg 

else: 

return self.func(arg) 

 

def _eval_is_real(self): 

return self.args[0].is_real 

 

def _eval_is_finite(self): 

arg = self.args[0] 

 

if arg.is_imaginary: 

return True 

 

 

class cot(TrigonometricFunction): 

""" 

The cotangent function. 

 

Returns the cotangent of x (measured in radians). 

 

Notes 

===== 

 

See :func:`sin` for notes about automatic evaluation. 

 

Examples 

======== 

 

>>> from sympy import cot, pi 

>>> from sympy.abc import x 

>>> cot(x**2).diff(x) 

2*x*(-cot(x**2)**2 - 1) 

>>> cot(1).diff(x) 

0 

>>> cot(pi/12) 

sqrt(3) + 2 

 

See Also 

======== 

 

sin, csc, cos, sec, tan 

asin, acsc, acos, asec, atan, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.14 

.. [3] http://functions.wolfram.com/ElementaryFunctions/Cot 

""" 

 

def period(self, symbol=None): 

return self._period(pi, symbol) 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return S.NegativeOne - self**2 

else: 

raise ArgumentIndexError(self, argindex) 

 

def inverse(self, argindex=1): 

""" 

Returns the inverse of this function. 

""" 

return acot 

 

@classmethod 

def eval(cls, arg): 

from sympy.calculus.util import AccumBounds 

if arg.is_Number: 

if arg is S.NaN: 

return S.NaN 

if arg is S.Zero: 

return S.ComplexInfinity 

 

if isinstance(arg, AccumBounds): 

return -tan(arg + S.Pi/2) 

 

if arg.could_extract_minus_sign(): 

return -cls(-arg) 

 

i_coeff = arg.as_coefficient(S.ImaginaryUnit) 

if i_coeff is not None: 

return -S.ImaginaryUnit * coth(i_coeff) 

 

pi_coeff = _pi_coeff(arg, 2) 

if pi_coeff is not None: 

if pi_coeff.is_integer: 

return S.ComplexInfinity 

 

if not pi_coeff.is_Rational: 

narg = pi_coeff*S.Pi 

if narg != arg: 

return cls(narg) 

return None 

 

if pi_coeff.is_Rational: 

if pi_coeff.q > 2 and not pi_coeff.q % 2: 

narg = pi_coeff*S.Pi*2 

cresult, sresult = cos(narg), cos(narg - S.Pi/2) 

if not isinstance(cresult, cos) \ 

and not isinstance(sresult, cos): 

return (1 + cresult)/sresult 

table2 = { 

12: (3, 4), 

20: (4, 5), 

30: (5, 6), 

15: (6, 10), 

24: (6, 8), 

40: (8, 10), 

60: (20, 30), 

120: (40, 60) 

} 

q = pi_coeff.q 

p = pi_coeff.p % q 

if q in table2: 

nvala, nvalb = cls(p*S.Pi/table2[q][0]), cls(p*S.Pi/table2[q][1]) 

if None == nvala or None == nvalb: 

return None 

return (1 + nvala*nvalb)/(nvalb - nvala) 

narg = (((pi_coeff + S.Half) % 1) - S.Half)*S.Pi 

# see cos() to specify which expressions should be 

# expanded automatically in terms of radicals 

cresult, sresult = cos(narg), cos(narg - S.Pi/2) 

if not isinstance(cresult, cos) \ 

and not isinstance(sresult, cos): 

if sresult == 0: 

return S.ComplexInfinity 

return cresult / sresult 

if narg != arg: 

return cls(narg) 

 

if arg.is_Add: 

x, m = _peeloff_pi(arg) 

if m: 

cotm = cot(m) 

if cotm == 0: 

return -tan(x) 

cotx = cot(x) 

if cotm is S.ComplexInfinity: 

return cotx 

if cotm.is_Rational: 

return (cotm*cotx - 1) / (cotm + cotx) 

return None 

 

if arg.func is acot: 

return arg.args[0] 

 

if arg.func is atan: 

x = arg.args[0] 

return 1 / x 

 

if arg.func is atan2: 

y, x = arg.args 

return x/y 

 

if arg.func is asin: 

x = arg.args[0] 

return sqrt(1 - x**2) / x 

 

if arg.func is acos: 

x = arg.args[0] 

return x / sqrt(1 - x**2) 

 

@staticmethod 

@cacheit 

def taylor_term(n, x, *previous_terms): 

from sympy import bernoulli 

if n == 0: 

return 1 / sympify(x) 

elif n < 0 or n % 2 == 0: 

return S.Zero 

else: 

x = sympify(x) 

 

B = bernoulli(n + 1) 

F = factorial(n + 1) 

 

return (-1)**((n + 1)//2) * 2**(n + 1) * B/F * x**n 

 

def _eval_nseries(self, x, n, logx): 

i = self.args[0].limit(x, 0)/S.Pi 

if i and i.is_Integer: 

return self.rewrite(cos)._eval_nseries(x, n=n, logx=logx) 

return self.rewrite(tan)._eval_nseries(x, n=n, logx=logx) 

 

def _eval_conjugate(self): 

return self.func(self.args[0].conjugate()) 

 

def as_real_imag(self, deep=True, **hints): 

re, im = self._as_real_imag(deep=deep, **hints) 

if im: 

denom = cos(2*re) - cosh(2*im) 

return (-sin(2*re)/denom, -sinh(2*im)/denom) 

else: 

return (self.func(re), S.Zero) 

 

def _eval_rewrite_as_exp(self, arg): 

I = S.ImaginaryUnit 

if isinstance(arg, TrigonometricFunction) or isinstance(arg, HyperbolicFunction): 

arg = arg.func(arg.args[0]).rewrite(exp) 

neg_exp, pos_exp = exp(-arg*I), exp(arg*I) 

return I*(pos_exp + neg_exp)/(pos_exp - neg_exp) 

 

def _eval_rewrite_as_Pow(self, arg): 

if arg.func is log: 

I = S.ImaginaryUnit 

x = arg.args[0] 

return -I*(x**-I + x**I)/(x**-I - x**I) 

 

def _eval_rewrite_as_sin(self, x): 

return 2*sin(2*x)/sin(x)**2 

 

def _eval_rewrite_as_cos(self, x): 

return cos(x) / cos(x - S.Pi / 2, evaluate=False) 

 

def _eval_rewrite_as_sincos(self, arg): 

return cos(arg)/sin(arg) 

 

def _eval_rewrite_as_tan(self, arg): 

return 1/tan(arg) 

 

def _eval_rewrite_as_sec(self, arg): 

cos_in_sec_form = cos(arg)._eval_rewrite_as_sec(arg) 

sin_in_sec_form = sin(arg)._eval_rewrite_as_sec(arg) 

return cos_in_sec_form / sin_in_sec_form 

 

def _eval_rewrite_as_csc(self, arg): 

cos_in_csc_form = cos(arg)._eval_rewrite_as_csc(arg) 

sin_in_csc_form = sin(arg)._eval_rewrite_as_csc(arg) 

return cos_in_csc_form / sin_in_csc_form 

 

def _eval_rewrite_as_pow(self, arg): 

y = self.rewrite(cos).rewrite(pow) 

if y.has(cos): 

return None 

return y 

 

def _eval_rewrite_as_sqrt(self, arg): 

y = self.rewrite(cos).rewrite(sqrt) 

if y.has(cos): 

return None 

return y 

 

def _eval_as_leading_term(self, x): 

from sympy import Order 

arg = self.args[0].as_leading_term(x) 

 

if x in arg.free_symbols and Order(1, x).contains(arg): 

return 1/arg 

else: 

return self.func(arg) 

 

def _eval_is_real(self): 

return self.args[0].is_real 

 

def _eval_expand_trig(self, **hints): 

from sympy import im, re 

arg = self.args[0] 

x = None 

if arg.is_Add: 

from sympy import symmetric_poly 

n = len(arg.args) 

CX = [] 

for x in arg.args: 

cx = cot(x, evaluate=False)._eval_expand_trig() 

CX.append(cx) 

 

Yg = numbered_symbols('Y') 

Y = [ next(Yg) for i in range(n) ] 

 

p = [0, 0] 

for i in range(n, -1, -1): 

p[(n - i) % 2] += symmetric_poly(i, Y)*(-1)**(((n - i) % 4)//2) 

return (p[0]/p[1]).subs(list(zip(Y, CX))) 

else: 

coeff, terms = arg.as_coeff_Mul(rational=True) 

if coeff.is_Integer and coeff > 1: 

I = S.ImaginaryUnit 

z = Symbol('dummy', real=True) 

P = ((z + I)**coeff).expand() 

return (re(P)/im(P)).subs([(z, cot(terms))]) 

return cot(arg) 

 

def _eval_is_finite(self): 

arg = self.args[0] 

if arg.is_imaginary: 

return True 

 

def _eval_subs(self, old, new): 

if self == old: 

return new 

arg = self.args[0] 

argnew = arg.subs(old, new) 

if arg != argnew and (argnew/S.Pi).is_integer: 

return S.ComplexInfinity 

return cot(argnew) 

 

 

class ReciprocalTrigonometricFunction(TrigonometricFunction): 

"""Base class for reciprocal functions of trigonometric functions. """ 

 

_reciprocal_of = None # mandatory, to be defined in subclass 

 

# _is_even and _is_odd are used for correct evaluation of csc(-x), sec(-x) 

# TODO refactor into TrigonometricFunction common parts of 

# trigonometric functions eval() like even/odd, func(x+2*k*pi), etc. 

_is_even = None # optional, to be defined in subclass 

_is_odd = None # optional, to be defined in subclass 

 

@classmethod 

def eval(cls, arg): 

if arg.could_extract_minus_sign(): 

if cls._is_even: 

return cls(-arg) 

if cls._is_odd: 

return -cls(-arg) 

 

pi_coeff = _pi_coeff(arg) 

if (pi_coeff is not None 

and not (2*pi_coeff).is_integer 

and pi_coeff.is_Rational): 

q = pi_coeff.q 

p = pi_coeff.p % (2*q) 

if p > q: 

narg = (pi_coeff - 1)*S.Pi 

return -cls(narg) 

if 2*p > q: 

narg = (1 - pi_coeff)*S.Pi 

if cls._is_odd: 

return cls(narg) 

elif cls._is_even: 

return -cls(narg) 

 

t = cls._reciprocal_of.eval(arg) 

if hasattr(arg, 'inverse') and arg.inverse() == cls: 

return arg.args[0] 

return 1/t if t != None else t 

 

def _call_reciprocal(self, method_name, *args, **kwargs): 

# Calls method_name on _reciprocal_of 

o = self._reciprocal_of(self.args[0]) 

return getattr(o, method_name)(*args, **kwargs) 

 

def _calculate_reciprocal(self, method_name, *args, **kwargs): 

# If calling method_name on _reciprocal_of returns a value != None 

# then return the reciprocal of that value 

t = self._call_reciprocal(method_name, *args, **kwargs) 

return 1/t if t != None else t 

 

def _rewrite_reciprocal(self, method_name, arg): 

# Special handling for rewrite functions. If reciprocal rewrite returns 

# unmodified expression, then return None 

t = self._call_reciprocal(method_name, arg) 

if t != None and t != self._reciprocal_of(arg): 

return 1/t 

 

def _period(self, symbol): 

f = self.args[0] 

return self._reciprocal_of(f).period(symbol) 

 

def fdiff(self, argindex=1): 

return -self._calculate_reciprocal("fdiff", argindex)/self**2 

 

def _eval_rewrite_as_exp(self, arg): 

return self._rewrite_reciprocal("_eval_rewrite_as_exp", arg) 

 

def _eval_rewrite_as_Pow(self, arg): 

return self._rewrite_reciprocal("_eval_rewrite_as_Pow", arg) 

 

def _eval_rewrite_as_sin(self, arg): 

return self._rewrite_reciprocal("_eval_rewrite_as_sin", arg) 

 

def _eval_rewrite_as_cos(self, arg): 

return self._rewrite_reciprocal("_eval_rewrite_as_cos", arg) 

 

def _eval_rewrite_as_tan(self, arg): 

return self._rewrite_reciprocal("_eval_rewrite_as_tan", arg) 

 

def _eval_rewrite_as_pow(self, arg): 

return self._rewrite_reciprocal("_eval_rewrite_as_pow", arg) 

 

def _eval_rewrite_as_sqrt(self, arg): 

return self._rewrite_reciprocal("_eval_rewrite_as_sqrt", arg) 

 

def _eval_conjugate(self): 

return self.func(self.args[0].conjugate()) 

 

def as_real_imag(self, deep=True, **hints): 

return (1/self._reciprocal_of(self.args[0])).as_real_imag(deep, 

**hints) 

 

def _eval_expand_trig(self, **hints): 

return self._calculate_reciprocal("_eval_expand_trig", **hints) 

 

def _eval_is_real(self): 

return self._reciprocal_of(self.args[0])._eval_is_real() 

 

def _eval_as_leading_term(self, x): 

return (1/self._reciprocal_of(self.args[0]))._eval_as_leading_term(x) 

 

def _eval_is_finite(self): 

return (1/self._reciprocal_of(self.args[0])).is_finite 

 

def _eval_nseries(self, x, n, logx): 

return (1/self._reciprocal_of(self.args[0]))._eval_nseries(x, n, logx) 

 

 

class sec(ReciprocalTrigonometricFunction): 

""" 

The secant function. 

 

Returns the secant of x (measured in radians). 

 

Notes 

===== 

 

See :func:`sin` for notes about automatic evaluation. 

 

Examples 

======== 

 

>>> from sympy import sec 

>>> from sympy.abc import x 

>>> sec(x**2).diff(x) 

2*x*tan(x**2)*sec(x**2) 

>>> sec(1).diff(x) 

0 

 

See Also 

======== 

 

sin, csc, cos, tan, cot 

asin, acsc, acos, asec, atan, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.14 

.. [3] http://functions.wolfram.com/ElementaryFunctions/Sec 

""" 

 

_reciprocal_of = cos 

_is_even = True 

 

def period(self, symbol=None): 

return self._period(symbol) 

 

def _eval_rewrite_as_cot(self, arg): 

cot_half_sq = cot(arg/2)**2 

return (cot_half_sq + 1)/(cot_half_sq - 1) 

 

def _eval_rewrite_as_cos(self, arg): 

return (1/cos(arg)) 

 

def _eval_rewrite_as_sincos(self, arg): 

return sin(arg)/(cos(arg)*sin(arg)) 

 

def _eval_rewrite_as_sin(self, arg): 

return (1 / cos(arg)._eval_rewrite_as_sin(arg)) 

 

def _eval_rewrite_as_tan(self, arg): 

return (1 / cos(arg)._eval_rewrite_as_tan(arg)) 

 

def _eval_rewrite_as_csc(self, arg): 

return csc(pi / 2 - arg, evaluate=False) 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return tan(self.args[0])*sec(self.args[0]) 

else: 

raise ArgumentIndexError(self, argindex) 

 

@staticmethod 

@cacheit 

def taylor_term(n, x, *previous_terms): 

# Reference Formula: 

# http://functions.wolfram.com/ElementaryFunctions/Sec/06/01/02/01/ 

from sympy.functions.combinatorial.numbers import euler 

if n < 0 or n % 2 == 1: 

return S.Zero 

else: 

x = sympify(x) 

k = n//2 

return (-1)**k*euler(2*k)/factorial(2*k)*x**(2*k) 

 

 

class csc(ReciprocalTrigonometricFunction): 

""" 

The cosecant function. 

 

Returns the cosecant of x (measured in radians). 

 

Notes 

===== 

 

See :func:`sin` for notes about automatic evaluation. 

 

Examples 

======== 

 

>>> from sympy import csc 

>>> from sympy.abc import x 

>>> csc(x**2).diff(x) 

-2*x*cot(x**2)*csc(x**2) 

>>> csc(1).diff(x) 

0 

 

See Also 

======== 

 

sin, cos, sec, tan, cot 

asin, acsc, acos, asec, atan, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.14 

.. [3] http://functions.wolfram.com/ElementaryFunctions/Csc 

""" 

 

_reciprocal_of = sin 

_is_odd = True 

 

def period(self, symbol=None): 

return self._period(symbol) 

 

def _eval_rewrite_as_sin(self, arg): 

return (1/sin(arg)) 

 

def _eval_rewrite_as_sincos(self, arg): 

return cos(arg)/(sin(arg)*cos(arg)) 

 

def _eval_rewrite_as_cot(self, arg): 

cot_half = cot(arg/2) 

return (1 + cot_half**2)/(2*cot_half) 

 

def _eval_rewrite_as_cos(self, arg): 

return (1 / sin(arg)._eval_rewrite_as_cos(arg)) 

 

def _eval_rewrite_as_sec(self, arg): 

return sec(pi / 2 - arg, evaluate=False) 

 

def _eval_rewrite_as_tan(self, arg): 

return (1 / sin(arg)._eval_rewrite_as_tan(arg)) 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return -cot(self.args[0])*csc(self.args[0]) 

else: 

raise ArgumentIndexError(self, argindex) 

 

@staticmethod 

@cacheit 

def taylor_term(n, x, *previous_terms): 

from sympy import bernoulli 

if n == 0: 

return 1/sympify(x) 

elif n < 0 or n % 2 == 0: 

return S.Zero 

else: 

x = sympify(x) 

k = n//2 + 1 

return ((-1)**(k - 1)*2*(2**(2*k - 1) - 1)* 

bernoulli(2*k)*x**(2*k - 1)/factorial(2*k)) 

 

 

class sinc(TrigonometricFunction): 

r"""Represents unnormalized sinc function 

 

Examples 

======== 

 

>>> from sympy import sinc, oo, jn, Product, Symbol 

>>> from sympy.abc import x 

>>> sinc(x) 

sinc(x) 

 

* Automated Evaluation 

 

>>> sinc(0) 

1 

>>> sinc(oo) 

0 

 

* Differentiation 

 

>>> sinc(x).diff() 

(x*cos(x) - sin(x))/x**2 

 

* Series Expansion 

 

>>> sinc(x).series() 

1 - x**2/6 + x**4/120 + O(x**6) 

 

* As zero'th order spherical Bessel Function 

 

>>> sinc(x).rewrite(jn) 

jn(0, x) 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Sinc_function 

 

""" 

 

def fdiff(self, argindex=1): 

x = self.args[0] 

if argindex == 1: 

return (x*cos(x) - sin(x)) / x**2 

else: 

raise ArgumentIndexError(self, argindex) 

 

@classmethod 

def eval(cls, arg): 

if arg.is_zero: 

return S.One 

if arg.is_Number: 

if arg in [S.Infinity, -S.Infinity]: 

return S.Zero 

elif arg is S.NaN: 

return S.NaN 

 

if arg is S.ComplexInfinity: 

return S.NaN 

 

if arg.could_extract_minus_sign(): 

return cls(-arg) 

 

pi_coeff = _pi_coeff(arg) 

if pi_coeff is not None: 

if pi_coeff.is_integer: 

if fuzzy_not(arg.is_zero): 

return S.Zero 

elif (2*pi_coeff).is_integer: 

return S.NegativeOne**(pi_coeff - S.Half) / arg 

 

def _eval_nseries(self, x, n, logx): 

x = self.args[0] 

return (sin(x)/x)._eval_nseries(x, n, logx) 

 

def _eval_rewrite_as_jn(self, arg): 

from sympy.functions.special.bessel import jn 

return jn(0, arg) 

 

def _eval_rewrite_as_sin(self, arg): 

return sin(arg) / arg 

 

 

############################################################################### 

########################### TRIGONOMETRIC INVERSES ############################ 

############################################################################### 

 

 

class InverseTrigonometricFunction(Function): 

"""Base class for inverse trigonometric functions.""" 

 

pass 

 

 

class asin(InverseTrigonometricFunction): 

""" 

The inverse sine function. 

 

Returns the arcsine of x in radians. 

 

Notes 

===== 

 

asin(x) will evaluate automatically in the cases oo, -oo, 0, 1, 

-1 and for some instances when the result is a rational multiple 

of pi (see the eval class method). 

 

Examples 

======== 

 

>>> from sympy import asin, oo, pi 

>>> asin(1) 

pi/2 

>>> asin(-1) 

-pi/2 

 

See Also 

======== 

 

sin, csc, cos, sec, tan, cot 

acsc, acos, asec, atan, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Inverse_trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.23 

.. [3] http://functions.wolfram.com/ElementaryFunctions/ArcSin 

""" 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return 1/sqrt(1 - self.args[0]**2) 

else: 

raise ArgumentIndexError(self, argindex) 

 

def _eval_is_rational(self): 

s = self.func(*self.args) 

if s.func == self.func: 

if s.args[0].is_rational: 

return False 

else: 

return s.is_rational 

 

def _eval_is_positive(self): 

if self.args[0].is_positive: 

return (self.args[0] - 1).is_negative 

if self.args[0].is_negative: 

return not (self.args[0] + 1).is_positive 

 

@classmethod 

def eval(cls, arg): 

if arg.is_Number: 

if arg is S.NaN: 

return S.NaN 

elif arg is S.Infinity: 

return S.NegativeInfinity * S.ImaginaryUnit 

elif arg is S.NegativeInfinity: 

return S.Infinity * S.ImaginaryUnit 

elif arg is S.Zero: 

return S.Zero 

elif arg is S.One: 

return S.Pi / 2 

elif arg is S.NegativeOne: 

return -S.Pi / 2 

 

if arg.could_extract_minus_sign(): 

return -cls(-arg) 

 

if arg.is_number: 

cst_table = { 

sqrt(3)/2: 3, 

-sqrt(3)/2: -3, 

sqrt(2)/2: 4, 

-sqrt(2)/2: -4, 

1/sqrt(2): 4, 

-1/sqrt(2): -4, 

sqrt((5 - sqrt(5))/8): 5, 

-sqrt((5 - sqrt(5))/8): -5, 

S.Half: 6, 

-S.Half: -6, 

sqrt(2 - sqrt(2))/2: 8, 

-sqrt(2 - sqrt(2))/2: -8, 

(sqrt(5) - 1)/4: 10, 

(1 - sqrt(5))/4: -10, 

(sqrt(3) - 1)/sqrt(2**3): 12, 

(1 - sqrt(3))/sqrt(2**3): -12, 

(sqrt(5) + 1)/4: S(10)/3, 

-(sqrt(5) + 1)/4: -S(10)/3 

} 

 

if arg in cst_table: 

return S.Pi / cst_table[arg] 

 

i_coeff = arg.as_coefficient(S.ImaginaryUnit) 

if i_coeff is not None: 

return S.ImaginaryUnit * asinh(i_coeff) 

 

@staticmethod 

@cacheit 

def taylor_term(n, x, *previous_terms): 

if n < 0 or n % 2 == 0: 

return S.Zero 

else: 

x = sympify(x) 

if len(previous_terms) >= 2 and n > 2: 

p = previous_terms[-2] 

return p * (n - 2)**2/(n*(n - 1)) * x**2 

else: 

k = (n - 1) // 2 

R = RisingFactorial(S.Half, k) 

F = factorial(k) 

return R / F * x**n / n 

 

def _eval_as_leading_term(self, x): 

from sympy import Order 

arg = self.args[0].as_leading_term(x) 

 

if x in arg.free_symbols and Order(1, x).contains(arg): 

return arg 

else: 

return self.func(arg) 

 

def _eval_rewrite_as_acos(self, x): 

return S.Pi/2 - acos(x) 

 

def _eval_rewrite_as_atan(self, x): 

return 2*atan(x/(1 + sqrt(1 - x**2))) 

 

def _eval_rewrite_as_log(self, x): 

return -S.ImaginaryUnit*log(S.ImaginaryUnit*x + sqrt(1 - x**2)) 

 

def _eval_rewrite_as_acot(self, arg): 

return 2*acot((1 + sqrt(1 - arg**2))/arg) 

 

def _eval_rewrite_as_asec(self, arg): 

return S.Pi/2 - asec(1/arg) 

 

def _eval_rewrite_as_acsc(self, arg): 

return acsc(1/arg) 

 

def _eval_is_real(self): 

x = self.args[0] 

return x.is_real and (1 - abs(x)).is_nonnegative 

 

def inverse(self, argindex=1): 

""" 

Returns the inverse of this function. 

""" 

return sin 

 

 

class acos(InverseTrigonometricFunction): 

""" 

The inverse cosine function. 

 

Returns the arc cosine of x (measured in radians). 

 

Notes 

===== 

 

``acos(x)`` will evaluate automatically in the cases 

``oo``, ``-oo``, ``0``, ``1``, ``-1``. 

 

``acos(zoo)`` evaluates to ``zoo`` 

(see note in :py:class`sympy.functions.elementary.trigonometric.asec`) 

 

Examples 

======== 

 

>>> from sympy import acos, oo, pi 

>>> acos(1) 

0 

>>> acos(0) 

pi/2 

>>> acos(oo) 

oo*I 

 

See Also 

======== 

 

sin, csc, cos, sec, tan, cot 

asin, acsc, asec, atan, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Inverse_trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.23 

.. [3] http://functions.wolfram.com/ElementaryFunctions/ArcCos 

""" 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return -1/sqrt(1 - self.args[0]**2) 

else: 

raise ArgumentIndexError(self, argindex) 

 

def _eval_is_rational(self): 

s = self.func(*self.args) 

if s.func == self.func: 

if s.args[0].is_rational: 

return False 

else: 

return s.is_rational 

 

def _eval_is_positive(self): 

x = self.args[0] 

return (1 - abs(x)).is_nonnegative 

 

@classmethod 

def eval(cls, arg): 

if arg.is_Number: 

if arg is S.NaN: 

return S.NaN 

elif arg is S.Infinity: 

return S.Infinity * S.ImaginaryUnit 

elif arg is S.NegativeInfinity: 

return S.NegativeInfinity * S.ImaginaryUnit 

elif arg is S.Zero: 

return S.Pi / 2 

elif arg is S.One: 

return S.Zero 

elif arg is S.NegativeOne: 

return S.Pi 

 

if arg is S.ComplexInfinity: 

return S.ComplexInfinity 

 

if arg.is_number: 

cst_table = { 

S.Half: S.Pi/3, 

-S.Half: 2*S.Pi/3, 

sqrt(2)/2: S.Pi/4, 

-sqrt(2)/2: 3*S.Pi/4, 

1/sqrt(2): S.Pi/4, 

-1/sqrt(2): 3*S.Pi/4, 

sqrt(3)/2: S.Pi/6, 

-sqrt(3)/2: 5*S.Pi/6, 

} 

 

if arg in cst_table: 

return cst_table[arg] 

 

@staticmethod 

@cacheit 

def taylor_term(n, x, *previous_terms): 

if n == 0: 

return S.Pi / 2 

elif n < 0 or n % 2 == 0: 

return S.Zero 

else: 

x = sympify(x) 

if len(previous_terms) >= 2 and n > 2: 

p = previous_terms[-2] 

return p * (n - 2)**2/(n*(n - 1)) * x**2 

else: 

k = (n - 1) // 2 

R = RisingFactorial(S.Half, k) 

F = factorial(k) 

return -R / F * x**n / n 

 

def _eval_as_leading_term(self, x): 

from sympy import Order 

arg = self.args[0].as_leading_term(x) 

 

if x in arg.free_symbols and Order(1, x).contains(arg): 

return arg 

else: 

return self.func(arg) 

 

def _eval_is_real(self): 

x = self.args[0] 

return x.is_real and (1 - abs(x)).is_nonnegative 

 

def _eval_rewrite_as_log(self, x): 

return S.Pi/2 + S.ImaginaryUnit * \ 

log(S.ImaginaryUnit * x + sqrt(1 - x**2)) 

 

def _eval_rewrite_as_asin(self, x): 

return S.Pi/2 - asin(x) 

 

def _eval_rewrite_as_atan(self, x): 

return atan(sqrt(1 - x**2)/x) + (S.Pi/2)*(1 - x*sqrt(1/x**2)) 

 

def inverse(self, argindex=1): 

""" 

Returns the inverse of this function. 

""" 

return cos 

 

def _eval_rewrite_as_acot(self, arg): 

return S.Pi/2 - 2*acot((1 + sqrt(1 - arg**2))/arg) 

 

def _eval_rewrite_as_asec(self, arg): 

return asec(1/arg) 

 

def _eval_rewrite_as_acsc(self, arg): 

return S.Pi/2 - acsc(1/arg) 

 

def _eval_conjugate(self): 

z = self.args[0] 

r = self.func(self.args[0].conjugate()) 

if z.is_real is False: 

return r 

elif z.is_real and (z + 1).is_nonnegative and (z - 1).is_nonpositive: 

return r 

 

 

class atan(InverseTrigonometricFunction): 

""" 

The inverse tangent function. 

 

Returns the arc tangent of x (measured in radians). 

 

Notes 

===== 

 

atan(x) will evaluate automatically in the cases 

oo, -oo, 0, 1, -1. 

 

Examples 

======== 

 

>>> from sympy import atan, oo, pi 

>>> atan(0) 

0 

>>> atan(1) 

pi/4 

>>> atan(oo) 

pi/2 

 

See Also 

======== 

 

sin, csc, cos, sec, tan, cot 

asin, acsc, acos, asec, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Inverse_trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.23 

.. [3] http://functions.wolfram.com/ElementaryFunctions/ArcTan 

""" 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return 1/(1 + self.args[0]**2) 

else: 

raise ArgumentIndexError(self, argindex) 

 

def _eval_is_rational(self): 

s = self.func(*self.args) 

if s.func == self.func: 

if s.args[0].is_rational: 

return False 

else: 

return s.is_rational 

 

def _eval_is_positive(self): 

return self.args[0].is_positive 

 

def _eval_is_nonnegative(self): 

return self.args[0].is_nonnegative 

 

@classmethod 

def eval(cls, arg): 

if arg.is_Number: 

if arg is S.NaN: 

return S.NaN 

elif arg is S.Infinity: 

return S.Pi / 2 

elif arg is S.NegativeInfinity: 

return -S.Pi / 2 

elif arg is S.Zero: 

return S.Zero 

elif arg is S.One: 

return S.Pi / 4 

elif arg is S.NegativeOne: 

return -S.Pi / 4 

if arg.could_extract_minus_sign(): 

return -cls(-arg) 

 

if arg.is_number: 

cst_table = { 

sqrt(3)/3: 6, 

-sqrt(3)/3: -6, 

1/sqrt(3): 6, 

-1/sqrt(3): -6, 

sqrt(3): 3, 

-sqrt(3): -3, 

(1 + sqrt(2)): S(8)/3, 

-(1 + sqrt(2)): S(8)/3, 

(sqrt(2) - 1): 8, 

(1 - sqrt(2)): -8, 

sqrt((5 + 2*sqrt(5))): S(5)/2, 

-sqrt((5 + 2*sqrt(5))): -S(5)/2, 

(2 - sqrt(3)): 12, 

-(2 - sqrt(3)): -12 

} 

 

if arg in cst_table: 

return S.Pi / cst_table[arg] 

 

i_coeff = arg.as_coefficient(S.ImaginaryUnit) 

if i_coeff is not None: 

return S.ImaginaryUnit * atanh(i_coeff) 

 

@staticmethod 

@cacheit 

def taylor_term(n, x, *previous_terms): 

if n < 0 or n % 2 == 0: 

return S.Zero 

else: 

x = sympify(x) 

return (-1)**((n - 1)//2) * x**n / n 

 

def _eval_as_leading_term(self, x): 

from sympy import Order 

arg = self.args[0].as_leading_term(x) 

 

if x in arg.free_symbols and Order(1, x).contains(arg): 

return arg 

else: 

return self.func(arg) 

 

def _eval_is_real(self): 

return self.args[0].is_real 

 

def _eval_rewrite_as_log(self, x): 

return S.ImaginaryUnit/2 * (log( 

(S(1) - S.ImaginaryUnit * x)/(S(1) + S.ImaginaryUnit * x))) 

 

def _eval_aseries(self, n, args0, x, logx): 

if args0[0] == S.Infinity: 

return (S.Pi/2 - atan(1/self.args[0]))._eval_nseries(x, n, logx) 

elif args0[0] == S.NegativeInfinity: 

return (-S.Pi/2 - atan(1/self.args[0]))._eval_nseries(x, n, logx) 

else: 

return super(atan, self)._eval_aseries(n, args0, x, logx) 

 

def inverse(self, argindex=1): 

""" 

Returns the inverse of this function. 

""" 

return tan 

 

def _eval_rewrite_as_asin(self, arg): 

return sqrt(arg**2)/arg*(S.Pi/2 - asin(1/sqrt(1 + arg**2))) 

 

def _eval_rewrite_as_acos(self, arg): 

return sqrt(arg**2)/arg*acos(1/sqrt(1 + arg**2)) 

 

def _eval_rewrite_as_acot(self, arg): 

return acot(1/arg) 

 

def _eval_rewrite_as_asec(self, arg): 

return sqrt(arg**2)/arg*asec(sqrt(1 + arg**2)) 

 

def _eval_rewrite_as_acsc(self, arg): 

return sqrt(arg**2)/arg*(S.Pi/2 - acsc(sqrt(1 + arg**2))) 

 

 

class acot(InverseTrigonometricFunction): 

""" 

The inverse cotangent function. 

 

Returns the arc cotangent of x (measured in radians). 

 

See Also 

======== 

 

sin, csc, cos, sec, tan, cot 

asin, acsc, acos, asec, atan, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Inverse_trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.23 

.. [3] http://functions.wolfram.com/ElementaryFunctions/ArcCot 

""" 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return -1 / (1 + self.args[0]**2) 

else: 

raise ArgumentIndexError(self, argindex) 

 

def _eval_is_rational(self): 

s = self.func(*self.args) 

if s.func == self.func: 

if s.args[0].is_rational: 

return False 

else: 

return s.is_rational 

 

def _eval_is_positive(self): 

return self.args[0].is_real 

 

@classmethod 

def eval(cls, arg): 

if arg.is_Number: 

if arg is S.NaN: 

return S.NaN 

elif arg is S.Infinity: 

return S.Zero 

elif arg is S.NegativeInfinity: 

return S.Zero 

elif arg is S.Zero: 

return S.Pi/ 2 

elif arg is S.One: 

return S.Pi / 4 

elif arg is S.NegativeOne: 

return -S.Pi / 4 

 

if arg.could_extract_minus_sign(): 

return -cls(-arg) 

 

if arg.is_number: 

cst_table = { 

sqrt(3)/3: 3, 

-sqrt(3)/3: -3, 

1/sqrt(3): 3, 

-1/sqrt(3): -3, 

sqrt(3): 6, 

-sqrt(3): -6, 

(1 + sqrt(2)): 8, 

-(1 + sqrt(2)): -8, 

(1 - sqrt(2)): -S(8)/3, 

(sqrt(2) - 1): S(8)/3, 

sqrt(5 + 2*sqrt(5)): 10, 

-sqrt(5 + 2*sqrt(5)): -10, 

(2 + sqrt(3)): 12, 

-(2 + sqrt(3)): -12, 

(2 - sqrt(3)): S(12)/5, 

-(2 - sqrt(3)): -S(12)/5, 

} 

 

if arg in cst_table: 

return S.Pi / cst_table[arg] 

 

i_coeff = arg.as_coefficient(S.ImaginaryUnit) 

if i_coeff is not None: 

return -S.ImaginaryUnit * acoth(i_coeff) 

 

@staticmethod 

@cacheit 

def taylor_term(n, x, *previous_terms): 

if n == 0: 

return S.Pi / 2 # FIX THIS 

elif n < 0 or n % 2 == 0: 

return S.Zero 

else: 

x = sympify(x) 

return (-1)**((n + 1)//2) * x**n / n 

 

def _eval_as_leading_term(self, x): 

from sympy import Order 

arg = self.args[0].as_leading_term(x) 

 

if x in arg.free_symbols and Order(1, x).contains(arg): 

return arg 

else: 

return self.func(arg) 

 

def _eval_is_real(self): 

return self.args[0].is_real 

 

def _eval_aseries(self, n, args0, x, logx): 

if args0[0] == S.Infinity: 

return (S.Pi/2 - acot(1/self.args[0]))._eval_nseries(x, n, logx) 

elif args0[0] == S.NegativeInfinity: 

return (3*S.Pi/2 - acot(1/self.args[0]))._eval_nseries(x, n, logx) 

else: 

return super(atan, self)._eval_aseries(n, args0, x, logx) 

 

def _eval_rewrite_as_log(self, x): 

return S.ImaginaryUnit/2 * \ 

(log((x - S.ImaginaryUnit)/(x + S.ImaginaryUnit))) 

 

def inverse(self, argindex=1): 

""" 

Returns the inverse of this function. 

""" 

return cot 

 

def _eval_rewrite_as_asin(self, arg): 

return (arg*sqrt(1/arg**2)* 

(S.Pi/2 - asin(sqrt(-arg**2)/sqrt(-arg**2 - 1)))) 

 

def _eval_rewrite_as_acos(self, arg): 

return arg*sqrt(1/arg**2)*acos(sqrt(-arg**2)/sqrt(-arg**2 - 1)) 

 

def _eval_rewrite_as_atan(self, arg): 

return atan(1/arg) 

 

def _eval_rewrite_as_asec(self, arg): 

return arg*sqrt(1/arg**2)*asec(sqrt((1 + arg**2)/arg**2)) 

 

def _eval_rewrite_as_acsc(self, arg): 

return arg*sqrt(1/arg**2)*(S.Pi/2 - acsc(sqrt((1 + arg**2)/arg**2))) 

 

 

class asec(InverseTrigonometricFunction): 

""" 

The inverse secant function. 

 

Returns the arc secant of x (measured in radians). 

 

Notes 

===== 

 

``asec(x)`` will evaluate automatically in the cases 

``oo``, ``-oo``, ``0``, ``1``, ``-1``. 

 

``asec(x)`` has branch cut in the interval [-1, 1]. For complex arguments, 

it can be defined [4]_ as 

 

.. math:: 

sec^{-1}(z) = -i*(log(\sqrt{1 - z^2} + 1) / z) 

 

At ``x = 0``, for positive branch cut, the limit evaluates to ``zoo``. For 

negative branch cut, the limit 

 

.. math:: 

\lim_{z \to 0}-i*(log(-\sqrt{1 - z^2} + 1) / z) 

 

simplifies to :math:`-i*log(z/2 + O(z^3))` which ultimately evaluates to 

``zoo``. 

 

As ``asex(x)`` = ``asec(1/x)``, a similar argument can be given for 

``acos(x)``. 

 

Examples 

======== 

 

>>> from sympy import asec, oo, pi 

>>> asec(1) 

0 

>>> asec(-1) 

pi 

 

See Also 

======== 

 

sin, csc, cos, sec, tan, cot 

asin, acsc, acos, atan, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Inverse_trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.23 

.. [3] http://functions.wolfram.com/ElementaryFunctions/ArcSec 

.. [4] http://refrence.wolfram.com/language/ref/ArcSec.html 

""" 

 

@classmethod 

def eval(cls, arg): 

if arg.is_zero: 

return S.ComplexInfinity 

if arg.is_Number: 

if arg is S.NaN: 

return S.NaN 

elif arg is S.One: 

return S.Zero 

elif arg is S.NegativeOne: 

return S.Pi 

if arg in [S.Infinity, S.NegativeInfinity, S.ComplexInfinity]: 

return S.Pi/2 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return 1/(self.args[0]**2*sqrt(1 - 1/self.args[0]**2)) 

else: 

raise ArgumentIndexError(self, argindex) 

 

def inverse(self, argindex=1): 

""" 

Returns the inverse of this function. 

""" 

return sec 

 

def _eval_as_leading_term(self, x): 

from sympy import Order 

arg = self.args[0].as_leading_term(x) 

if Order(1,x).contains(arg): 

return log(arg) 

else: 

return self.func(arg) 

 

def _eval_is_real(self): 

x = self.args[0] 

if x.is_real is False: 

return False 

return (x - 1).is_nonnegative or (-x - 1).is_nonnegative 

 

def _eval_rewrite_as_log(self, arg): 

return S.Pi/2 + S.ImaginaryUnit*log(S.ImaginaryUnit/arg + sqrt(1 - 1/arg**2)) 

 

def _eval_rewrite_as_asin(self, arg): 

return S.Pi/2 - asin(1/arg) 

 

def _eval_rewrite_as_acos(self, arg): 

return acos(1/arg) 

 

def _eval_rewrite_as_atan(self, arg): 

return sqrt(arg**2)/arg*(-S.Pi/2 + 2*atan(arg + sqrt(arg**2 - 1))) 

 

def _eval_rewrite_as_acot(self, arg): 

return sqrt(arg**2)/arg*(-S.Pi/2 + 2*acot(arg - sqrt(arg**2 - 1))) 

 

def _eval_rewrite_as_acsc(self, arg): 

return S.Pi/2 - acsc(arg) 

 

 

class acsc(InverseTrigonometricFunction): 

""" 

The inverse cosecant function. 

 

Returns the arc cosecant of x (measured in radians). 

 

Notes 

===== 

 

acsc(x) will evaluate automatically in the cases 

oo, -oo, 0, 1, -1. 

 

Examples 

======== 

 

>>> from sympy import acsc, oo, pi 

>>> acsc(1) 

pi/2 

>>> acsc(-1) 

-pi/2 

 

See Also 

======== 

 

sin, csc, cos, sec, tan, cot 

asin, acos, asec, atan, acot, atan2 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Inverse_trigonometric_functions 

.. [2] http://dlmf.nist.gov/4.23 

.. [3] http://functions.wolfram.com/ElementaryFunctions/ArcCsc 

""" 

 

@classmethod 

def eval(cls, arg): 

if arg.is_Number: 

if arg is S.NaN: 

return S.NaN 

elif arg is S.One: 

return S.Pi/2 

elif arg is S.NegativeOne: 

return -S.Pi/2 

if arg in [S.Infinity, S.NegativeInfinity, S.ComplexInfinity]: 

return S.Zero 

 

def fdiff(self, argindex=1): 

if argindex == 1: 

return -1/(self.args[0]**2*sqrt(1 - 1/self.args[0]**2)) 

else: 

raise ArgumentIndexError(self, argindex) 

 

def inverse(self, argindex=1): 

""" 

Returns the inverse of this function. 

""" 

return csc 

 

def _eval_as_leading_term(self, x): 

from sympy import Order 

arg = self.args[0].as_leading_term(x) 

if Order(1,x).contains(arg): 

return log(arg) 

else: 

return self.func(arg) 

 

def _eval_rewrite_as_log(self, arg): 

return -S.ImaginaryUnit*log(S.ImaginaryUnit/arg + sqrt(1 - 1/arg**2)) 

 

def _eval_rewrite_as_asin(self, arg): 

return asin(1/arg) 

 

def _eval_rewrite_as_acos(self, arg): 

return S.Pi/2 - acos(1/arg) 

 

def _eval_rewrite_as_atan(self, arg): 

return sqrt(arg**2)/arg*(S.Pi/2 - atan(sqrt(arg**2 - 1))) 

 

def _eval_rewrite_as_acot(self, arg): 

return sqrt(arg**2)/arg*(S.Pi/2 - acot(1/sqrt(arg**2 - 1))) 

 

def _eval_rewrite_as_asec(self, arg): 

return S.Pi/2 - asec(arg) 

 

 

class atan2(InverseTrigonometricFunction): 

r""" 

The function ``atan2(y, x)`` computes `\operatorname{atan}(y/x)` taking 

two arguments `y` and `x`. Signs of both `y` and `x` are considered to 

determine the appropriate quadrant of `\operatorname{atan}(y/x)`. 

The range is `(-\pi, \pi]`. The complete definition reads as follows: 

 

.. math:: 

 

\operatorname{atan2}(y, x) = 

\begin{cases} 

\arctan\left(\frac y x\right) & \qquad x > 0 \\ 

\arctan\left(\frac y x\right) + \pi& \qquad y \ge 0 , x < 0 \\ 

\arctan\left(\frac y x\right) - \pi& \qquad y < 0 , x < 0 \\ 

+\frac{\pi}{2} & \qquad y > 0 , x = 0 \\ 

-\frac{\pi}{2} & \qquad y < 0 , x = 0 \\ 

\text{undefined} & \qquad y = 0, x = 0 

\end{cases} 

 

Attention: Note the role reversal of both arguments. The `y`-coordinate 

is the first argument and the `x`-coordinate the second. 

 

Examples 

======== 

 

Going counter-clock wise around the origin we find the 

following angles: 

 

>>> from sympy import atan2 

>>> atan2(0, 1) 

0 

>>> atan2(1, 1) 

pi/4 

>>> atan2(1, 0) 

pi/2 

>>> atan2(1, -1) 

3*pi/4 

>>> atan2(0, -1) 

pi 

>>> atan2(-1, -1) 

-3*pi/4 

>>> atan2(-1, 0) 

-pi/2 

>>> atan2(-1, 1) 

-pi/4 

 

which are all correct. Compare this to the results of the ordinary 

`\operatorname{atan}` function for the point `(x, y) = (-1, 1)` 

 

>>> from sympy import atan, S 

>>> atan(S(1) / -1) 

-pi/4 

>>> atan2(1, -1) 

3*pi/4 

 

where only the `\operatorname{atan2}` function reurns what we expect. 

We can differentiate the function with respect to both arguments: 

 

>>> from sympy import diff 

>>> from sympy.abc import x, y 

>>> diff(atan2(y, x), x) 

-y/(x**2 + y**2) 

 

>>> diff(atan2(y, x), y) 

x/(x**2 + y**2) 

 

We can express the `\operatorname{atan2}` function in terms of 

complex logarithms: 

 

>>> from sympy import log 

>>> atan2(y, x).rewrite(log) 

-I*log((x + I*y)/sqrt(x**2 + y**2)) 

 

and in terms of `\operatorname(atan)`: 

 

>>> from sympy import atan 

>>> atan2(y, x).rewrite(atan) 

2*atan(y/(x + sqrt(x**2 + y**2))) 

 

but note that this form is undefined on the negative real axis. 

 

See Also 

======== 

 

sin, csc, cos, sec, tan, cot 

asin, acsc, acos, asec, atan, acot 

 

References 

========== 

 

.. [1] http://en.wikipedia.org/wiki/Inverse_trigonometric_functions 

.. [2] http://en.wikipedia.org/wiki/Atan2 

.. [3] http://functions.wolfram.com/ElementaryFunctions/ArcTan2 

""" 

 

@classmethod 

def eval(cls, y, x): 

from sympy import Heaviside, im, re 

if x is S.NegativeInfinity: 

if y.is_zero: 

# Special case y = 0 because we define Heaviside(0) = 1/2 

return S.Pi 

return 2*S.Pi*(Heaviside(re(y))) - S.Pi 

elif x is S.Infinity: 

return S.Zero 

elif x.is_imaginary and y.is_imaginary and x.is_number and y.is_number: 

x = im(x) 

y = im(y) 

 

if x.is_real and y.is_real: 

if x.is_positive: 

return atan(y / x) 

elif x.is_negative: 

if y.is_negative: 

return atan(y / x) - S.Pi 

elif y.is_nonnegative: 

return atan(y / x) + S.Pi 

elif x.is_zero: 

if y.is_positive: 

return S.Pi/2 

elif y.is_negative: 

return -S.Pi/2 

elif y.is_zero: 

return S.NaN 

if y.is_zero and x.is_real and fuzzy_not(x.is_zero): 

return S.Pi * (S.One - Heaviside(x)) 

if x.is_number and y.is_number: 

return -S.ImaginaryUnit*log( 

(x + S.ImaginaryUnit*y)/sqrt(x**2 + y**2)) 

 

def _eval_rewrite_as_log(self, y, x): 

return -S.ImaginaryUnit*log((x + S.ImaginaryUnit*y) / sqrt(x**2 + y**2)) 

 

def _eval_rewrite_as_atan(self, y, x): 

return 2*atan(y / (sqrt(x**2 + y**2) + x)) 

 

def _eval_rewrite_as_arg(self, y, x): 

from sympy import arg 

if x.is_real and y.is_real: 

return arg(x + y*S.ImaginaryUnit) 

I = S.ImaginaryUnit 

n = x + I*y 

d = x**2 + y**2 

return arg(n/sqrt(d)) - I*log(abs(n)/sqrt(abs(d))) 

 

def _eval_is_real(self): 

return self.args[0].is_real and self.args[1].is_real 

 

def _eval_conjugate(self): 

return self.func(self.args[0].conjugate(), self.args[1].conjugate()) 

 

def fdiff(self, argindex): 

y, x = self.args 

if argindex == 1: 

# Diff wrt y 

return x/(x**2 + y**2) 

elif argindex == 2: 

# Diff wrt x 

return -y/(x**2 + y**2) 

else: 

raise ArgumentIndexError(self, argindex) 

 

def _eval_evalf(self, prec): 

y, x = self.args 

if x.is_real and y.is_real: 

super(atan2, self)._eval_evalf(prec)