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

r""" 

Differential Forms 

 

Let `U` and `M` be two differentiable manifolds. 

Given a positive integer `p` and a differentiable map `\Phi: U \rightarrow M`, 

a *differential form of degree* `p`, or `p`-*form*, 

*along* `U` *with values on* `M` is a field along `U` of alternating 

multilinear forms of degree `p` in the tangent spaces to `M`. 

The standard case of a differential form *on* a differentiable manifold 

corresponds to `U = M` and `\Phi = \mathrm{Id}_M`. Other common cases are 

`\Phi` being an immersion and `\Phi` being a curve in `M` (`U` is then an open 

interval of `\RR`). 

 

Two classes implement differential forms, depending whether the manifold 

`M` is parallelizable: 

 

* :class:`DiffFormParal` when `M` is parallelizable 

* :class:`DiffForm` when `M` is not assumed parallelizable. 

 

AUTHORS: 

 

- Eric Gourgoulhon, Michal Bejger (2013, 2014): initial version 

- Joris Vankerschaver (2010): developed a previous class, 

``DifferentialForm`` (cf. :trac:`24444`), which inspired the storage of the 

non-zero components as a dictionary whose keys are the indices. 

- Travis Scrimshaw (2016): review tweaks 

 

REFERENCES: 

 

- [KN1963]_ 

- [Lee2013]_ 

 

""" 

 

#****************************************************************************** 

# Copyright (C) 2015 Eric Gourgoulhon <eric.gourgoulhon@obspm.fr> 

# Copyright (C) 2015 Michal Bejger <bejger@camk.edu.pl> 

# Copyright (C) 2010 Joris Vankerschaver <joris.vankerschaver@gmail.com> 

# Copyright (C) 2016 Travis Scrimshaw <tscrimsh@umn.edu> 

# 

# Distributed under the terms of the GNU General Public License (GPL) 

# as published by the Free Software Foundation; either version 2 of 

# the License, or (at your option) any later version. 

# http://www.gnu.org/licenses/ 

#****************************************************************************** 

 

from sage.misc.cachefunc import cached_method 

from sage.tensor.modules.free_module_alt_form import FreeModuleAltForm 

from sage.manifolds.differentiable.tensorfield import TensorField 

from sage.manifolds.differentiable.tensorfield_paral import TensorFieldParal 

 

class DiffForm(TensorField): 

r""" 

Differential form with values on a generic (i.e. a priori not 

parallelizable) differentiable manifold. 

 

Given a differentiable manifold `U`, a differentiable map 

`\Phi: U \rightarrow M` to a differentiable manifold `M` and a positive 

integer `p`, a *differential form of degree* `p` (or `p`-*form*) 

*along* `U` *with values on* `M\supset\Phi(U)` is a differentiable map 

 

.. MATH:: 

 

a:\ U \longrightarrow T^{(0,p)}M 

 

(`T^{(0,p)}M` being the tensor bundle of type `(0,p)` over `M`) such that 

 

.. MATH:: 

 

\forall x \in U,\quad a(x) \in \Lambda^p(T_{\Phi(x)}^* M) , 

 

where `T_{\Phi(x)}^* M` is the dual of the tangent space to `M` at 

`\Phi(x)` and `\Lambda^p` stands for the exterior power of degree `p` (cf. 

:class:`~sage.tensor.modules.ext_pow_free_module.ExtPowerDualFreeModule`). 

In other words, `a(x)` is an alternating multilinear form of degree `p` of 

the tangent vector space `T_{\Phi(x)} M`. 

 

The standard case of a differential form *on* a 

manifold `M` corresponds to `U = M` and `\Phi = \mathrm{Id}_M`. Other 

common cases are `\Phi` being an immersion and `\Phi` being a curve in `M` 

(`U` is then an open interval of `\RR`). 

 

.. NOTE:: 

 

If `M` is parallelizable, the class :class:`DiffFormParal` 

must be used instead. 

 

INPUT: 

 

- ``vector_field_module`` -- module `\mathfrak{X}(U,\Phi)` of vector 

fields along `U` with values on `M` via the map `\Phi` 

- ``degree`` -- the degree of the differential form (i.e. its tensor rank) 

- ``name`` -- (default: ``None``) name given to the differential form 

- ``latex_name`` -- (default: ``None``) LaTeX symbol to denote the 

differential form; if none is provided, the LaTeX symbol is set to 

``name`` 

 

EXAMPLES: 

 

Differential form of degree 2 on a non-parallelizable 2-dimensional 

manifold:: 

 

sage: M = Manifold(2, 'M') 

sage: U = M.open_subset('U') ; V = M.open_subset('V') 

sage: M.declare_union(U,V) # M is the union of U and V 

sage: c_xy.<x,y> = U.chart() ; c_uv.<u,v> = V.chart() 

sage: xy_to_uv = c_xy.transition_map(c_uv, (x+y, x-y), intersection_name='W', 

....: restrictions1= x>0, restrictions2= u+v>0) 

sage: uv_to_xy = xy_to_uv.inverse() 

sage: W = U.intersection(V) 

sage: eU = c_xy.frame() ; eV = c_uv.frame() 

sage: a = M.diff_form(2, name='a') ; a 

2-form a on the 2-dimensional differentiable manifold M 

sage: a.parent() 

Module Omega^2(M) of 2-forms on the 2-dimensional differentiable 

manifold M 

sage: a.degree() 

2 

 

Setting the components of ``a``:: 

 

sage: a[eU,0,1] = x*y^2 + 2*x 

sage: a.add_comp_by_continuation(eV, W, c_uv) 

sage: a.display(eU) 

a = (x*y^2 + 2*x) dx/\dy 

sage: a.display(eV) 

a = (-1/16*u^3 + 1/16*u*v^2 - 1/16*v^3 

+ 1/16*(u^2 - 8)*v - 1/2*u) du/\dv 

 

A 1-form on ``M``:: 

 

sage: a = M.one_form('a') ; a 

1-form a on the 2-dimensional differentiable manifold M 

sage: a.parent() 

Module Omega^1(M) of 1-forms on the 2-dimensional differentiable 

manifold M 

sage: a.degree() 

1 

 

Setting the components of the 1-form in a consistent way:: 

 

sage: a[eU,:] = [-y, x] 

sage: a.add_comp_by_continuation(eV, W, c_uv) 

sage: a.display(eU) 

a = -y dx + x dy 

sage: a.display(eV) 

a = 1/2*v du - 1/2*u dv 

 

The exterior derivative of the 1-form is a 2-form:: 

 

sage: da = a.exterior_derivative() ; da 

2-form da on the 2-dimensional differentiable manifold M 

sage: da.display(eU) 

da = 2 dx/\dy 

sage: da.display(eV) 

da = -du/\dv 

 

Another 1-form:: 

 

sage: b = M.one_form('b') 

sage: b[eU,:] = [1+x*y, x^2] 

sage: b.add_comp_by_continuation(eV, W, c_uv) 

 

Adding two 1-forms results in another 1-form:: 

 

sage: s = a + b ; s 

1-form a+b on the 2-dimensional differentiable manifold M 

sage: s.display(eU) 

a+b = ((x - 1)*y + 1) dx + (x^2 + x) dy 

sage: s.display(eV) 

a+b = (1/4*u^2 + 1/4*(u + 2)*v + 1/2) du 

+ (-1/4*u*v - 1/4*v^2 - 1/2*u + 1/2) dv 

 

The exterior product of two 1-forms is a 2-form:: 

 

sage: s = a.wedge(b) ; s 

2-form a/\b on the 2-dimensional differentiable manifold M 

sage: s.display(eU) 

a/\b = (-2*x^2*y - x) dx/\dy 

sage: s.display(eV) 

a/\b = (1/8*u^3 - 1/8*u*v^2 - 1/8*v^3 + 1/8*(u^2 + 2)*v + 1/4*u) du/\dv 

 

Multiplying a 1-form by a scalar field results in another 1-form:: 

 

sage: f = M.scalar_field({c_xy: (x+y)^2, c_uv: u^2}, name='f') 

sage: s = f*a ; s 

1-form on the 2-dimensional differentiable manifold M 

sage: s.display(eU) 

(-x^2*y - 2*x*y^2 - y^3) dx + (x^3 + 2*x^2*y + x*y^2) dy 

sage: s.display(eV) 

1/2*u^2*v du - 1/2*u^3 dv 

 

 

.. RUBRIC:: Examples with SymPy as the symbolic engine 

 

From now on, we ask that all symbolic calculus on manifold `M` are 

performed by SymPy:: 

 

sage: M.set_calculus_method('sympy') 

 

We define a 2-form `a` as above:: 

 

sage: a = M.diff_form(2, name='a') 

sage: a[eU,0,1] = x*y^2 + 2*x 

sage: a.add_comp_by_continuation(eV, W, c_uv) 

sage: a.display(eU) 

a = (x*y**2 + 2*x) dx/\dy 

sage: a.display(eV) 

a = (-u**3/16 + u**2*v/16 + u*v**2/16 - u/2 - v**3/16 - v/2) du/\dv 

 

A 1-form on ``M``:: 

 

sage: a = M.one_form('a') 

sage: a[eU,:] = [-y, x] 

sage: a.add_comp_by_continuation(eV, W, c_uv) 

sage: a.display(eU) 

a = -y dx + x dy 

sage: a.display(eV) 

a = v/2 du - u/2 dv 

 

The exterior derivative of ``a``:: 

 

sage: da = a.exterior_derivative() 

sage: da.display(eU) 

da = 2 dx/\dy 

sage: da.display(eV) 

da = -du/\dv 

 

Another 1-form:: 

 

sage: b = M.one_form('b') 

sage: b[eU,:] = [1+x*y, x^2] 

sage: b.add_comp_by_continuation(eV, W, c_uv) 

 

Adding two 1-forms:: 

 

sage: s = a + b 

sage: s.display(eU) 

a+b = (x*y - y + 1) dx + x*(x + 1) dy 

sage: s.display(eV) 

a+b = (u**2/4 + u*v/4 + v/2 + 1/2) du + (-u*v/4 - u/2 - v**2/4 + 1/2) dv 

 

The exterior product of two 1-forms:: 

 

sage: s = a.wedge(b) 

sage: s.display(eU) 

a/\b = -x*(2*x*y + 1) dx/\dy 

sage: s.display(eV) 

a/\b = (u**3/8 + u**2*v/8 - u*v**2/8 + u/4 - v**3/8 + v/4) du/\dv 

 

Multiplying a 1-form by a scalar field:: 

 

sage: f = M.scalar_field({c_xy: (x+y)^2, c_uv: u^2}, name='f') 

sage: s = f*a 

sage: s.display(eU) 

-y*(x**2 + 2*x*y + y**2) dx + x*(x**2 + 2*x*y + y**2) dy 

sage: s.display(eV) 

u**2*v/2 du - u**3/2 dv 

 

""" 

def __init__(self, vector_field_module, degree, name=None, latex_name=None): 

r""" 

Construct a differential form. 

 

TESTS: 

 

Construction via ``parent.element_class``, and not via a direct call 

to ``DiffForm`, to fit with the category framework:: 

 

sage: M = Manifold(2, 'M') 

sage: U = M.open_subset('U') ; V = M.open_subset('V') 

sage: M.declare_union(U,V) # M is the union of U and V 

sage: c_xy.<x,y> = U.chart() ; c_uv.<u,v> = V.chart() 

sage: xy_to_uv = c_xy.transition_map(c_uv, (x+y, x-y), 

....: intersection_name='W', restrictions1= x>0, 

....: restrictions2= u+v>0) 

sage: uv_to_xy = xy_to_uv.inverse() 

sage: W = U.intersection(V) 

sage: e_xy = c_xy.frame() ; e_uv = c_uv.frame() 

sage: A = M.diff_form_module(2) 

sage: XM = M.vector_field_module() 

sage: a = A.element_class(XM, 2, name='a'); a 

2-form a on the 2-dimensional differentiable manifold M 

sage: a[e_xy,0,1] = x+y 

sage: a.add_comp_by_continuation(e_uv, W, c_uv) 

sage: TestSuite(a).run(skip='_test_pickling') 

 

Construction with ``DifferentiableManifold.diff_form``:: 

 

sage: a1 = M.diff_form(2, name='a'); a1 

2-form a on the 2-dimensional differentiable manifold M 

sage: type(a1) == type(a) 

True 

sage: a1.parent() is a.parent() 

True 

 

.. TODO:: 

 

Fix ``_test_pickling`` (in the superclass :class:`TensorField`). 

 

""" 

TensorField.__init__(self, vector_field_module, (0,degree), name=name, 

latex_name=latex_name, antisym=range(degree), 

parent=vector_field_module.dual_exterior_power(degree)) 

self._init_derived() # initialization of derived quantities 

 

def _repr_(self): 

r""" 

String representation of ``self``. 

 

TESTS:: 

 

sage: M = Manifold(3, 'M') 

sage: a = M.diff_form(2, name='a') 

sage: a._repr_() 

'2-form a on the 3-dimensional differentiable manifold M' 

sage: repr(a) # indirect doctest 

'2-form a on the 3-dimensional differentiable manifold M' 

sage: a # indirect doctest 

2-form a on the 3-dimensional differentiable manifold M 

sage: b = M.diff_form(2) 

sage: b._repr_() 

'2-form on the 3-dimensional differentiable manifold M' 

 

""" 

description = "{}-form ".format(self._tensor_rank) 

if self._name is not None: 

description += self._name + " " 

return self._final_repr(description) 

 

def _new_instance(self): 

r""" 

Create an instance of the same class, of the same degree and on the 

same domain. 

 

TESTS:: 

 

sage: M = Manifold(3, 'M') 

sage: a = M.diff_form(2, name='a') 

sage: a1 = a._new_instance(); a1 

2-form on the 3-dimensional differentiable manifold M 

sage: type(a1) == type(a) 

True 

sage: a1.parent() is a.parent() 

True 

 

""" 

return type(self)(self._vmodule, self._tensor_rank) 

 

def _del_derived(self): 

r""" 

Delete the derived quantities. 

 

TESTS:: 

 

sage: M = Manifold(3, 'M') 

sage: a = M.diff_form(2, name='a') 

sage: a._del_derived() 

 

""" 

TensorField._del_derived(self) 

self.exterior_derivative.clear_cache() 

 

@cached_method 

def exterior_derivative(self): 

r""" 

Compute the exterior derivative of ``self``. 

 

OUTPUT: 

 

- instance of :class:`DiffForm` representing the exterior derivative 

of the differential form 

 

EXAMPLES: 

 

Exterior derivative of a 1-form on the 2-sphere:: 

 

sage: M = Manifold(2, 'M') # the 2-dimensional sphere S^2 

sage: U = M.open_subset('U') # complement of the North pole 

sage: c_xy.<x,y> = U.chart() # stereographic coordinates from the North pole 

sage: V = M.open_subset('V') # complement of the South pole 

sage: c_uv.<u,v> = V.chart() # stereographic coordinates from the South pole 

sage: M.declare_union(U,V) # S^2 is the union of U and V 

sage: xy_to_uv = c_xy.transition_map(c_uv, (x/(x^2+y^2), y/(x^2+y^2)), 

....: intersection_name='W', restrictions1= x^2+y^2!=0, 

....: restrictions2= u^2+v^2!=0) 

sage: uv_to_xy = xy_to_uv.inverse() 

sage: e_xy = c_xy.frame(); e_uv = c_uv.frame() 

 

The 1-form:: 

 

sage: a = M.diff_form(1, name='a') 

sage: a[e_xy,:] = -y^2, x^2 

sage: a.add_comp_by_continuation(e_uv, U.intersection(V), c_uv) 

sage: a.display(e_xy) 

a = -y^2 dx + x^2 dy 

sage: a.display(e_uv) 

a = -(2*u^3*v - u^2*v^2 + v^4)/(u^8 + 4*u^6*v^2 + 6*u^4*v^4 + 4*u^2*v^6 + v^8) du 

+ (u^4 - u^2*v^2 + 2*u*v^3)/(u^8 + 4*u^6*v^2 + 6*u^4*v^4 + 4*u^2*v^6 + v^8) dv 

 

Its exterior derivative:: 

 

sage: da = a.exterior_derivative(); da 

2-form da on the 2-dimensional differentiable manifold M 

sage: da.display(e_xy) 

da = (2*x + 2*y) dx/\dy 

sage: da.display(e_uv) 

da = -2*(u + v)/(u^6 + 3*u^4*v^2 + 3*u^2*v^4 + v^6) du/\dv 

 

The result is cached, i.e. is not recomputed unless ``a`` is changed:: 

 

sage: a.exterior_derivative() is da 

True 

 

Instead of invoking the method :meth:`exterior_derivative`, one may 

use the global function 

:func:`~sage.manifolds.utilities.exterior_derivative` 

or its alias :func:`~sage.manifolds.utilities.xder`:: 

 

sage: from sage.manifolds.utilities import xder 

sage: xder(a) is a.exterior_derivative() 

True 

 

Let us check Cartan's identity:: 

 

sage: v = M.vector_field(name='v') 

sage: v[e_xy, :] = -y, x 

sage: v.add_comp_by_continuation(e_uv, U.intersection(V), c_uv) 

sage: a.lie_der(v) == v.contract(xder(a)) + xder(a(v)) # long time 

True 

 

""" 

from sage.tensor.modules.format_utilities import (format_unop_txt, 

format_unop_latex) 

vmodule = self._vmodule # shortcut 

rname = format_unop_txt('d', self._name) 

rlname = format_unop_latex(r'\mathrm{d}', self._latex_name) 

resu = vmodule.alternating_form(self._tensor_rank+1, name=rname, 

latex_name=rlname) 

for dom, rst in self._restrictions.items(): 

resu._restrictions[dom] = rst.exterior_derivative() 

return resu 

 

def wedge(self, other): 

r""" 

Exterior product with another differential form. 

 

INPUT: 

 

- ``other`` -- another differential form (on the same manifold) 

 

OUTPUT: 

 

- instance of :class:`DiffForm` representing the exterior product 

``self/\other`` 

 

EXAMPLES: 

 

Exterior product of two 1-forms on the 2-sphere:: 

 

 

sage: M = Manifold(2, 'S^2', start_index=1) # the 2-dimensional sphere S^2 

sage: U = M.open_subset('U') ; V = M.open_subset('V') 

sage: M.declare_union(U,V) # S^2 is the union of U and V 

sage: c_xy.<x,y> = U.chart() ; c_uv.<u,v> = V.chart() # stereographic coord. (North and South) 

sage: xy_to_uv = c_xy.transition_map(c_uv, (x/(x^2+y^2), y/(x^2+y^2)), 

....: intersection_name='W', restrictions1= x^2+y^2!=0, 

....: restrictions2= u^2+v^2!=0) 

sage: uv_to_xy = xy_to_uv.inverse() 

sage: W = U.intersection(V) # The complement of the two poles 

sage: e_xy = c_xy.frame() ; e_uv = c_uv.frame() 

sage: a = M.diff_form(1, name='a') 

sage: a[e_xy,:] = y, x 

sage: a.add_comp_by_continuation(e_uv, W, c_uv) 

sage: b = M.diff_form(1, name='b') 

sage: b[e_xy,:] = x^2 + y^2, y 

sage: b.add_comp_by_continuation(e_uv, W, c_uv) 

sage: c = a.wedge(b); c 

2-form a/\b on the 2-dimensional differentiable manifold S^2 

sage: c.display(e_xy) 

a/\b = (-x^3 - (x - 1)*y^2) dx/\dy 

sage: c.display(e_uv) 

a/\b = -(v^2 - u)/(u^8 + 4*u^6*v^2 + 6*u^4*v^4 + 4*u^2*v^6 + v^8) du/\dv 

 

""" 

from sage.tensor.modules.format_utilities import is_atomic 

if self._domain.is_subset(other._domain): 

if not self._ambient_domain.is_subset(other._ambient_domain): 

raise ValueError("incompatible ambient domains for exterior product") 

elif other._domain.is_subset(self._domain): 

if not other._ambient_domain.is_subset(self._ambient_domain): 

raise ValueError("incompatible ambient domains for exterior product") 

dom_resu = self._domain.intersection(other._domain) 

ambient_dom_resu = self._ambient_domain.intersection(other._ambient_domain) 

self_r = self.restrict(dom_resu) 

other_r = other.restrict(dom_resu) 

if ambient_dom_resu.is_manifestly_parallelizable(): 

# call of the FreeModuleAltForm version: 

return FreeModuleAltForm.wedge(self_r, other_r) 

# otherwise, the result is created here: 

if self._name is not None and other._name is not None: 

sname = self._name 

oname = other._name 

if not is_atomic(sname): 

sname = '(' + sname + ')' 

if not is_atomic(oname): 

oname = '(' + oname + ')' 

resu_name = sname + '/\\' + oname 

if self._latex_name is not None and other._latex_name is not None: 

slname = self._latex_name 

olname = other._latex_name 

if not is_atomic(slname): 

slname = '(' + slname + ')' 

if not is_atomic(olname): 

olname = '(' + olname + ')' 

resu_latex_name = slname + r'\wedge ' + olname 

dest_map = self._vmodule._dest_map 

dest_map_resu = dest_map.restrict(dom_resu, 

subcodomain=ambient_dom_resu) 

vmodule = dom_resu.vector_field_module(dest_map=dest_map_resu) 

resu_degree = self._tensor_rank + other._tensor_rank 

resu = vmodule.alternating_form(resu_degree, name=resu_name, 

latex_name=resu_latex_name) 

for dom in self_r._restrictions: 

if dom in other_r._restrictions: 

resu._restrictions[dom] = self_r._restrictions[dom].wedge( 

other_r._restrictions[dom]) 

return resu 

 

def degree(self): 

r""" 

Return the degree of ``self``. 

 

OUTPUT: 

 

- integer `p` such that the differential form is a `p`-form 

 

EXAMPLES:: 

 

sage: M = Manifold(3, 'M') 

sage: a = M.diff_form(2); a 

2-form on the 3-dimensional differentiable manifold M 

sage: a.degree() 

2 

sage: b = M.diff_form(1); b 

1-form on the 3-dimensional differentiable manifold M 

sage: b.degree() 

1 

 

""" 

return self._tensor_rank 

 

def hodge_dual(self, metric): 

r""" 

Compute the Hodge dual of the differential form with respect to some 

metric. 

 

If the differential form is a `p`-form `A`, its *Hodge dual* with 

respect to a pseudo-Riemannian metric `g` is the 

`(n-p)`-form `*A` defined by 

 

.. MATH:: 

 

*A_{i_1\ldots i_{n-p}} = \frac{1}{p!} A_{k_1\ldots k_p} 

\epsilon^{k_1\ldots k_p}_{\qquad\ i_1\ldots i_{n-p}} 

 

where `n` is the manifold's dimension, `\epsilon` is the volume 

`n`-form associated with `g` (see 

:meth:`~sage.manifolds.differentiable.metric.PseudoRiemannianMetric.volume_form`) 

and the indices `k_1,\ldots, k_p` are raised with `g`. 

 

INPUT: 

 

- ``metric``: a pseudo-Riemannian metric defined on the same manifold 

as the current differential form; must be an instance of 

:class:`~sage.manifolds.differentiable.metric.PseudoRiemannianMetric` 

 

OUTPUT: 

 

- the `(n-p)`-form `*A` 

 

EXAMPLES: 

 

Hodge dual of a 1-form on the 2-sphere equipped with the standard 

metric: we first construct `\mathbb{S}^2` and its metric `g`:: 

 

sage: M = Manifold(2, 'S^2', start_index=1) 

sage: U = M.open_subset('U') ; V = M.open_subset('V') 

sage: M.declare_union(U,V) # S^2 is the union of U and V 

sage: c_xy.<x,y> = U.chart() ; c_uv.<u,v> = V.chart() # stereographic coord. (North and South) 

sage: xy_to_uv = c_xy.transition_map(c_uv, (x/(x^2+y^2), y/(x^2+y^2)), 

....: intersection_name='W', restrictions1= x^2+y^2!=0, 

....: restrictions2= u^2+v^2!=0) 

sage: uv_to_xy = xy_to_uv.inverse() 

sage: W = U.intersection(V) # The complement of the two poles 

sage: eU = c_xy.frame() ; eV = c_uv.frame() 

sage: g = M.metric('g') 

sage: g[eU,1,1], g[eU,2,2] = 4/(1+x^2+y^2)^2, 4/(1+x^2+y^2)^2 

sage: g[eV,1,1], g[eV,2,2] = 4/(1+u^2+v^2)^2, 4/(1+u^2+v^2)^2 

 

Then we construct the 1-form and take its Hodge dual w.r.t. `g`:: 

 

sage: a = M.one_form(name='a') 

sage: a[eU,:] = -y, x 

sage: a.add_comp_by_continuation(eV, W, c_uv) 

sage: a.display(eU) 

a = -y dx + x dy 

sage: a.display(eV) 

a = -v/(u^4 + 2*u^2*v^2 + v^4) du + u/(u^4 + 2*u^2*v^2 + v^4) dv 

sage: sa = a.hodge_dual(g); sa 

1-form *a on the 2-dimensional differentiable manifold S^2 

sage: sa.display(eU) 

*a = -x dx - y dy 

sage: sa.display(eV) 

*a = -u/(u^4 + 2*u^2*v^2 + v^4) du - v/(u^4 + 2*u^2*v^2 + v^4) dv 

 

Instead of calling the method :meth:`hodge_dual` on the differential 

form, one can invoke the method 

:meth:`~sage.manifolds.differentiable.metric.PseudoRiemannianMetric.hodge_star` 

of the metric:: 

 

sage: a.hodge_dual(g) == g.hodge_star(a) 

True 

 

For a 1-form and a Riemannian metric in dimension 2, the Hodge dual 

applied twice is minus the identity:: 

 

sage: ssa = sa.hodge_dual(g); ssa 

1-form **a on the 2-dimensional differentiable manifold S^2 

sage: ssa == -a 

True 

 

The Hodge dual of the metric volume 2-form is the constant scalar 

field 1 (considered as a 0-form):: 

 

sage: eps = g.volume_form(); eps 

2-form eps_g on the 2-dimensional differentiable manifold S^2 

sage: eps.display(eU) 

eps_g = 4/(x^4 + y^4 + 2*(x^2 + 1)*y^2 + 2*x^2 + 1) dx/\dy 

sage: eps.display(eV) 

eps_g = 4/(u^4 + v^4 + 2*(u^2 + 1)*v^2 + 2*u^2 + 1) du/\dv 

sage: seps = eps.hodge_dual(g); seps 

Scalar field *eps_g on the 2-dimensional differentiable manifold S^2 

sage: seps.display() 

*eps_g: S^2 --> R 

on U: (x, y) |--> 1 

on V: (u, v) |--> 1 

 

""" 

return metric.hodge_star(self) 

 

def interior_product(self, qvect): 

r""" 

Interior product with a multivector field. 

 

If ``self`` is a differential form `A` of degree `p` and `B` is a 

multivector field of degree `q\geq p` on the same manifold, the 

interior product of `A` by `B` is the multivector field `\iota_A B` of 

degree `q-p` defined by 

 

.. MATH:: 

 

(\iota_A B)^{i_1\ldots i_{q-p}} = A_{k_1\ldots k_p} 

B^{k_1\ldots k_p i_1\ldots i_{q-p}} 

 

.. NOTE:: 

 

``A.interior_product(B)`` yields the same result as 

``A.contract(0,..., p-1, B, 0,..., p-1)`` (cf. 

:meth:`~sage.manifolds.differentiable.tensorfield.TensorField.contract`), 

but ``interior_product`` is more efficient, the alternating 

character of `A` being not used to reduce the computation in 

:meth:`~sage.manifolds.differentiable.tensorfield.TensorField.contract` 

 

INPUT: 

 

- ``qvect`` -- multivector field `B` (instance of 

:class:`~sage.manifolds.differentiable.multivectorfield.MultivectorField`); 

the degree of `B` must be at least equal to the degree of ``self`` 

 

OUTPUT: 

 

- scalar field (case `p=q`) or 

:class:`~sage.manifolds.differentiable.multivectorfield.MultivectorField` 

(case `p<q`) representing the interior product `\iota_A B`, where 

`A` is ``self`` 

 

.. SEEALSO:: 

 

:meth:`~sage.manifolds.differentiable.multivectorfield.MultivectorField.interior_product` 

for the interior product of a multivector field with a differential 

form 

 

EXAMPLES: 

 

Interior product of a 1-form with a 2-vector field on the 2-sphere:: 

 

sage: M = Manifold(2, 'S^2', start_index=1) # the sphere S^2 

sage: U = M.open_subset('U') ; V = M.open_subset('V') 

sage: M.declare_union(U,V) # S^2 is the union of U and V 

sage: c_xy.<x,y> = U.chart() # stereographic coord. North 

sage: c_uv.<u,v> = V.chart() # stereographic coord. South 

sage: xy_to_uv = c_xy.transition_map(c_uv, (x/(x^2+y^2), y/(x^2+y^2)), 

....: intersection_name='W', restrictions1= x^2+y^2!=0, 

....: restrictions2= u^2+v^2!=0) 

sage: uv_to_xy = xy_to_uv.inverse() 

sage: W = U.intersection(V) # The complement of the two poles 

sage: e_xy = c_xy.frame() ; e_uv = c_uv.frame() 

sage: a = M.one_form(name='a') 

sage: a[e_xy,:] = y, x 

sage: a.add_comp_by_continuation(e_uv, W, c_uv) 

sage: b = M.multivector_field(2, name='b') 

sage: b[e_xy,1,2] = x*y 

sage: b.add_comp_by_continuation(e_uv, W, c_uv) 

sage: s = a.interior_product(b); s 

Vector field i_a b on the 2-dimensional differentiable manifold S^2 

sage: s.display(e_xy) 

i_a b = -x^2*y d/dx + x*y^2 d/dy 

sage: s.display(e_uv) 

i_a b = (u^4*v - 3*u^2*v^3)/(u^6 + 3*u^4*v^2 + 3*u^2*v^4 + v^6) d/du 

+ (3*u^3*v^2 - u*v^4)/(u^6 + 3*u^4*v^2 + 3*u^2*v^4 + v^6) d/dv 

sage: s == a.contract(b) 

True 

 

Interior product of a 2-form with a 2-vector field:: 

 

sage: a = M.diff_form(2, name='a') 

sage: a[e_xy,1,2] = 4/(x^2+y^2+1)^2 # the standard area 2-form 

sage: a.add_comp_by_continuation(e_uv, W, c_uv) 

sage: s = a.interior_product(b); s 

Scalar field i_a b on the 2-dimensional differentiable manifold S^2 

sage: s.display() 

i_a b: S^2 --> R 

on U: (x, y) |--> 8*x*y/(x^4 + y^4 + 2*(x^2 + 1)*y^2 + 2*x^2 + 1) 

on V: (u, v) |--> 8*u*v/(u^4 + v^4 + 2*(u^2 + 1)*v^2 + 2*u^2 + 1) 

 

Some checks:: 

 

sage: s == a.contract(0, 1, b, 0, 1) 

True 

sage: s.restrict(U) == 2 * a[[e_xy,1,2]] * b[[e_xy,1,2]] 

True 

sage: s.restrict(V) == 2 * a[[e_uv,1,2]] * b[[e_uv,1,2]] 

True 

 

""" 

from sage.tensor.modules.format_utilities import is_atomic 

if self._domain.is_subset(qvect._domain): 

if not self._ambient_domain.is_subset(qvect._ambient_domain): 

raise ValueError("incompatible ambient domains for interior " + 

"product") 

elif qvect._domain.is_subset(self._domain): 

if not qvect._ambient_domain.is_subset(self._ambient_domain): 

raise ValueError("incompatible ambient domains for interior " + 

"product") 

dom_resu = self._domain.intersection(qvect._domain) 

ambient_dom_resu = self._ambient_domain.intersection(qvect._ambient_domain) 

self_r = self.restrict(dom_resu) 

qvect_r = qvect.restrict(dom_resu) 

if ambient_dom_resu.is_manifestly_parallelizable(): 

# call of the AlternatingContrTensor version: 

return AlternatingContrTensor.interior_product(self_r, qvect_r) 

# Otherwise, the result is created here: 

# Name of the result 

resu_name = None 

if self._name is not None and qvect._name is not None: 

sname = self._name 

oname = qvect._name 

if not is_atomic(sname): 

sname = '(' + sname + ')' 

if not is_atomic(oname): 

oname = '(' + oname + ')' 

resu_name = 'i_' + sname + ' ' + oname 

resu_latex_name = None 

if self._latex_name is not None and qvect._latex_name is not None: 

slname = self._latex_name 

olname = qvect._latex_name 

if not is_atomic(olname): 

olname = r'\left(' + olname + r'\right)' 

resu_latex_name = r'\iota_{' + slname + '} ' + olname 

# Domain and computation of the result 

dest_map = self._vmodule._dest_map 

dest_map_resu = dest_map.restrict(dom_resu, 

subcodomain=ambient_dom_resu) 

vmodule = dom_resu.vector_field_module(dest_map=dest_map_resu) 

resu_degree = qvect._tensor_rank - self._tensor_rank 

resu = vmodule.alternating_contravariant_tensor(resu_degree, 

name=resu_name, latex_name=resu_latex_name) 

for dom in self_r._restrictions: 

if dom in qvect_r._restrictions: 

resu._restrictions[dom] = \ 

self_r._restrictions[dom].interior_product( 

qvect_r._restrictions[dom]) 

if resu_degree == 0: 

if not resu._express: # only the restrictions to subdomains have 

# been initialized 

for chart in dom_resu.top_charts(): 

resu._express[chart] = \ 

resu.restrict(chart.domain()).coord_function(chart) 

return resu 

 

#****************************************************************************** 

 

class DiffFormParal(FreeModuleAltForm, TensorFieldParal): 

r""" 

Differential form with values on a parallelizable manifold. 

 

Given a differentiable manifold `U`, a differentiable map 

`\Phi: U \rightarrow M` to a parallelizable manifold `M` and a positive 

integer `p`, a *differential form of degree* `p` (or `p`-*form*) 

*along* `U` *with values on* `M\supset\Phi(U)` is a differentiable map 

 

.. MATH:: 

 

a:\ U \longrightarrow T^{(0,p)}M 

 

(`T^{(0,p)}M` being the tensor bundle of type `(0,p)` over `M`) such that 

 

.. MATH:: 

 

\forall x \in U,\quad a(x) \in \Lambda^p(T_{\Phi(x)}^* M) , 

 

where `T_{\Phi(x)}^* M` is the dual of the tangent space to `M` at 

`\Phi(x)` and `\Lambda^p` stands for the exterior power of degree `p` (cf. 

:class:`~sage.tensor.modules.ext_pow_free_module.ExtPowerDualFreeModule`). 

In other words, `a(x)` is an alternating multilinear form of degree `p` of 

the tangent vector space `T_{\Phi(x)} M`. 

 

The standard case of a differential form *on* a manifold `M` corresponds 

to `U = M` and `\Phi = \mathrm{Id}_M`. Other common cases are `\Phi` 

being an immersion and `\Phi` being a curve in `M` (`U` is then an 

open interval of `\RR`). 

 

.. NOTE:: 

 

If `M` is not parallelizable, the class :class:`DiffForm` must 

be used instead. 

 

INPUT: 

 

- ``vector_field_module`` -- free module `\mathfrak{X}(U,\Phi)` of vector 

fields along `U` with values on `M` via the map `\Phi` 

- ``degree`` -- the degree of the differential form (i.e. its tensor rank) 

- ``name`` -- (default: ``None``) name given to the differential form 

- ``latex_name`` -- (default: ``None``) LaTeX symbol to denote the 

differential form; if none is provided, the LaTeX symbol is set to 

``name`` 

 

EXAMPLES: 

 

A 2-form on a 4-dimensional manifold:: 

 

sage: M = Manifold(4, 'M') 

sage: c_txyz.<t,x,y,z> = M.chart() 

sage: a = M.diff_form(2, 'a') ; a 

2-form a on the 4-dimensional differentiable manifold M 

sage: a.parent() 

Free module Omega^2(M) of 2-forms on the 4-dimensional differentiable 

manifold M 

 

A differential form is a tensor field of purely covariant type:: 

 

sage: a.tensor_type() 

(0, 2) 

 

It is antisymmetric, its components being 

:class:`~sage.tensor.modules.comp.CompFullyAntiSym`:: 

 

sage: a.symmetries() 

no symmetry; antisymmetry: (0, 1) 

sage: a[0,1] = 2 

sage: a[1,0] 

-2 

sage: a.comp() 

Fully antisymmetric 2-indices components w.r.t. Coordinate frame (M, (d/dt,d/dx,d/dy,d/dz)) 

sage: type(a.comp()) 

<class 'sage.tensor.modules.comp.CompFullyAntiSym'> 

 

Setting a component with repeated indices to a non-zero value 

results in an error:: 

 

sage: a[1,1] = 3 

Traceback (most recent call last): 

... 

ValueError: by antisymmetry, the component cannot have a nonzero value 

for the indices (1, 1) 

sage: a[1,1] = 0 # OK, albeit useless 

sage: a[1,2] = 3 # OK 

 

The expansion of a differential form with respect to a given coframe is 

displayed via the method 

:meth:`~sage.tensor.modules.free_module_alt_form.FreeModuleAltForm.display`:: 

 

sage: a.display() # expansion with respect to the default coframe (dt, dx, dy, dz) 

a = 2 dt/\dx + 3 dx/\dy 

sage: latex(a.display()) # output for the notebook 

a = 2 \mathrm{d} t\wedge \mathrm{d} x 

+ 3 \mathrm{d} x\wedge \mathrm{d} y 

 

Differential forms can be added or subtracted:: 

 

sage: b = M.diff_form(2) 

sage: b[0,1], b[0,2], b[0,3] = (1,2,3) 

sage: s = a + b ; s 

2-form on the 4-dimensional differentiable manifold M 

sage: a[:], b[:], s[:] 

( 

[ 0 2 0 0] [ 0 1 2 3] [ 0 3 2 3] 

[-2 0 3 0] [-1 0 0 0] [-3 0 3 0] 

[ 0 -3 0 0] [-2 0 0 0] [-2 -3 0 0] 

[ 0 0 0 0], [-3 0 0 0], [-3 0 0 0] 

) 

sage: s = a - b ; s 

2-form on the 4-dimensional differentiable manifold M 

sage: s[:] 

[ 0 1 -2 -3] 

[-1 0 3 0] 

[ 2 -3 0 0] 

[ 3 0 0 0] 

 

An example of 3-form is the volume element on `\RR^3` in Cartesian 

coordinates:: 

 

sage: M = Manifold(3, 'R3', '\RR^3', start_index=1) 

sage: c_cart.<x,y,z> = M.chart() 

sage: eps = M.diff_form(3, 'epsilon', r'\epsilon') 

sage: eps[1,2,3] = 1 # the only independent component 

sage: eps[:] # all the components are set from the previous line: 

[[[0, 0, 0], [0, 0, 1], [0, -1, 0]], [[0, 0, -1], [0, 0, 0], [1, 0, 0]], 

[[0, 1, 0], [-1, 0, 0], [0, 0, 0]]] 

sage: eps.display() 

epsilon = dx/\dy/\dz 

 

Spherical components of the volume element from the tensorial 

change-of-frame formula:: 

 

sage: c_spher.<r,th,ph> = M.chart(r'r:[0,+oo) th:[0,pi]:\theta ph:[0,2*pi):\phi') 

sage: spher_to_cart = c_spher.transition_map(c_cart, 

....: [r*sin(th)*cos(ph), r*sin(th)*sin(ph), r*cos(th)]) 

sage: cart_to_spher = spher_to_cart.set_inverse(sqrt(x^2+y^2+z^2), 

....: atan2(sqrt(x^2+y^2),z), atan2(y, x)) 

sage: eps.comp(c_spher.frame()) # computation of the components in the spherical frame 

Fully antisymmetric 3-indices components w.r.t. Coordinate frame 

(R3, (d/dr,d/dth,d/dph)) 

sage: eps.comp(c_spher.frame())[1,2,3, c_spher] 

r^2*sin(th) 

sage: eps.display(c_spher.frame()) 

epsilon = sqrt(x^2 + y^2 + z^2)*sqrt(x^2 + y^2) dr/\dth/\dph 

sage: eps.display(c_spher.frame(), c_spher) 

epsilon = r^2*sin(th) dr/\dth/\dph 

 

The exterior product of two differential forms is performed via the method 

:meth:`~sage.tensor.modules.free_module_alt_form.FreeModuleAltForm.wedge`:: 

 

sage: a = M.one_form('A') 

sage: a[:] = (x*y*z, -z*x, y*z) 

sage: b = M.one_form('B') 

sage: b[:] = (cos(z), sin(x), cos(y)) 

sage: ab = a.wedge(b) ; ab 

2-form A/\B on the 3-dimensional differentiable manifold R3 

sage: ab[:] 

[ 0 x*y*z*sin(x) + x*z*cos(z) x*y*z*cos(y) - y*z*cos(z)] 

[-x*y*z*sin(x) - x*z*cos(z) 0 -(x*cos(y) + y*sin(x))*z] 

[-x*y*z*cos(y) + y*z*cos(z) (x*cos(y) + y*sin(x))*z 0] 

sage: ab.display() 

A/\B = (x*y*z*sin(x) + x*z*cos(z)) dx/\dy + (x*y*z*cos(y) - y*z*cos(z)) dx/\dz 

- (x*cos(y) + y*sin(x))*z dy/\dz 

 

Let us check the formula relating the exterior product to the tensor 

product for 1-forms:: 

 

sage: a.wedge(b) == a*b - b*a 

True 

 

The tensor product of a 1-form and a 2-form is not a 3-form but a tensor 

field of type `(0,3)` with less symmetries:: 

 

sage: c = a*ab ; c 

Tensor field A*(A/\B) of type (0,3) on the 3-dimensional differentiable 

manifold R3 

sage: c.symmetries() # the antisymmetry is only w.r.t. the last 2 arguments: 

no symmetry; antisymmetry: (1, 2) 

sage: d = ab*a ; d 

Tensor field (A/\B)*A of type (0,3) on the 3-dimensional differentiable 

manifold R3 

sage: d.symmetries() # the antisymmetry is only w.r.t. the first 2 arguments: 

no symmetry; antisymmetry: (0, 1) 

 

The exterior derivative of a differential form is obtained by means 

of the :meth:`exterior_derivative`:: 

 

sage: da = a.exterior_derivative() ; da 

2-form dA on the 3-dimensional differentiable manifold R3 

sage: da.display() 

dA = -(x + 1)*z dx/\dy - x*y dx/\dz + (x + z) dy/\dz 

sage: db = b.exterior_derivative() ; db 

2-form dB on the 3-dimensional differentiable manifold R3 

sage: db.display() 

dB = cos(x) dx/\dy + sin(z) dx/\dz - sin(y) dy/\dz 

sage: dab = ab.exterior_derivative() ; dab 

3-form d(A/\B) on the 3-dimensional differentiable manifold R3 

 

As a 3-form over a 3-dimensional manifold, ``d(A/\B)`` is necessarily 

proportional to the volume 3-form:: 

 

sage: dab == dab[[1,2,3]]/eps[[1,2,3]]*eps 

True 

 

We may also check that the classical anti-derivation formula is fulfilled:: 

 

sage: dab == da.wedge(b) - a.wedge(db) 

True 

 

The Lie derivative of a 2-form is a 2-form:: 

 

sage: v = M.vector_field('v') 

sage: v[:] = (y*z, -x*z, x*y) 

sage: ab.lie_der(v) # long time 

2-form on the 3-dimensional differentiable manifold R3 

 

Let us check Cartan formula, which expresses the Lie derivative in terms 

of exterior derivatives:: 

 

sage: ab.lie_der(v) == (v.contract(ab.exterior_derivative()) # long time 

....: + v.contract(ab).exterior_derivative()) 

True 

 

A 1-form on a `\RR^3`:: 

 

sage: om = M.one_form('omega', r'\omega') ; om 

1-form omega on the 3-dimensional differentiable manifold R3 

 

A 1-form is of course a differential form:: 

 

sage: isinstance(om, sage.manifolds.differentiable.diff_form.DiffFormParal) 

True 

sage: om.parent() 

Free module Omega^1(R3) of 1-forms on the 3-dimensional differentiable 

manifold R3 

sage: om.tensor_type() 

(0, 1) 

 

Setting the components with respect to the manifold's default frame:: 

 

sage: om[:] = (2*z, x, x-y) 

sage: om[:] 

[2*z, x, x - y] 

sage: om.display() 

omega = 2*z dx + x dy + (x - y) dz 

 

A 1-form acts on vector fields:: 

 

sage: v = M.vector_field('V') 

sage: v[:] = (x, 2*y, 3*z) 

sage: om(v) 

Scalar field omega(V) on the 3-dimensional differentiable manifold R3 

sage: om(v).display() 

omega(V): R3 --> R 

(x, y, z) |--> 2*x*y + (5*x - 3*y)*z 

(r, th, ph) |--> 2*r^2*cos(ph)*sin(ph)*sin(th)^2 + r^2*(5*cos(ph) 

- 3*sin(ph))*cos(th)*sin(th) 

sage: latex(om(v)) 

\omega\left(V\right) 

 

The tensor product of two 1-forms is a tensor field of type `(0,2)`:: 

 

sage: a = M.one_form('A') 

sage: a[:] = (1, 2, 3) 

sage: b = M.one_form('B') 

sage: b[:] = (6, 5, 4) 

sage: c = a*b ; c 

Tensor field A*B of type (0,2) on the 3-dimensional differentiable 

manifold R3 

sage: c[:] 

[ 6 5 4] 

[12 10 8] 

[18 15 12] 

sage: c.symmetries() # c has no symmetries: 

no symmetry; no antisymmetry 

 

""" 

def __init__(self, vector_field_module, degree, name=None, 

latex_name=None): 

r""" 

Construct a differential form. 

 

TESTS: 

 

Construction via ``parent.element_class``, and not via a direct call 

to ``DiffFormParal``, to fit with the category framework:: 

 

sage: M = Manifold(2, 'M') 

sage: X.<x,y> = M.chart() # makes M parallelizable 

sage: A = M.diff_form_module(2) 

sage: XM = M.vector_field_module() 

sage: a = A.element_class(XM, 2, name='a'); a 

2-form a on the 2-dimensional differentiable manifold M 

sage: a[0,1] = x*y 

sage: TestSuite(a).run() 

 

Construction via ``DifferentiableManifold.diff_form``:: 

 

sage: a1 = M.diff_form(2, name='a'); a1 

2-form a on the 2-dimensional differentiable manifold M 

sage: type(a1) == type(a) 

True 

sage: a1.parent() is a.parent() 

True 

 

""" 

FreeModuleAltForm.__init__(self, vector_field_module, degree, 

name=name, latex_name=latex_name) 

# TensorFieldParal attributes: 

self._vmodule = vector_field_module 

self._domain = vector_field_module._domain 

self._ambient_domain = vector_field_module._ambient_domain 

# initialization of derived quantities: 

self._init_derived() 

 

def _repr_(self): 

r""" 

String representation of ``self``. 

 

TESTS:: 

 

sage: M = Manifold(3, 'M') 

sage: X.<x,y,z> = M.chart() # makes M parallelizable 

sage: a = M.diff_form(2, name='a') 

sage: a._repr_() 

'2-form a on the 3-dimensional differentiable manifold M' 

sage: repr(a) # indirect doctest 

'2-form a on the 3-dimensional differentiable manifold M' 

sage: a # indirect doctest 

2-form a on the 3-dimensional differentiable manifold M 

sage: b = M.diff_form(2) 

sage: b._repr_() 

'2-form on the 3-dimensional differentiable manifold M' 

 

""" 

description = "{}-form ".format(self._tensor_rank) 

if self._name is not None: 

description += self._name + " " 

return self._final_repr(description) 

 

def _new_instance(self): 

r""" 

Create an instance of the same class, of the same degree and on the 

same domain. 

 

TESTS:: 

 

sage: M = Manifold(3, 'M') 

sage: X.<x,y,z> = M.chart() # makes M parallelizable 

sage: a = M.diff_form(2, name='a') 

sage: a1 = a._new_instance(); a1 

2-form on the 3-dimensional differentiable manifold M 

sage: type(a1) == type(a) 

True 

sage: a1.parent() is a.parent() 

True 

 

""" 

return type(self)(self._fmodule, self._tensor_rank) 

 

# This method is needed to redirect to the correct class (TensorFieldParal) 

def _init_derived(self): 

r""" 

Initialize the derived quantities of ``self``. 

 

TESTS:: 

 

sage: M = Manifold(3, 'M') 

sage: X.<x,y,z> = M.chart() # makes M parallelizable 

sage: a = M.diff_form(2, name='a') 

sage: a._init_derived() 

 

""" 

TensorFieldParal._init_derived(self) 

 

def _del_derived(self, del_restrictions=True): 

r""" 

Delete the derived quantities. 

 

INPUT: 

 

- ``del_restrictions`` -- (default: ``True``) determines whether the 

restrictions of ``self`` to subdomains are deleted 

 

TESTS:: 

 

sage: M = Manifold(3, 'M') 

sage: X.<x,y,z> = M.chart() # makes M parallelizable 

sage: a = M.diff_form(2, name='a') 

sage: a._del_derived() 

 

""" 

TensorFieldParal._del_derived(self, del_restrictions=del_restrictions) 

self.exterior_derivative.clear_cache() 

 

def __call__(self, *args): 

r""" 

Redefinition of 

:meth:`~sage.tensor.modules.free_module_tensor.FreeModuleTensor.__call__` 

to allow for domain treatment. 

 

TESTS:: 

 

sage: M = Manifold(2, 'M') 

sage: X.<x,y> = M.chart() 

sage: a = M.diff_form(2, name='a') 

sage: a[0,1] = x*y 

sage: a.display() 

a = x*y dx/\dy 

sage: u = M.vector_field(name='u') 

sage: u[:] = [1+x, 2-y] 

sage: v = M.vector_field(name='v') 

sage: v[:] = [-y, x] 

sage: s = a.__call__(u,v); s 

Scalar field a(u,v) on the 2-dimensional differentiable manifold M 

sage: s.display() 

a(u,v): M --> R 

(x, y) |--> -x*y^3 + 2*x*y^2 + (x^3 + x^2)*y 

sage: s == a[[0,1]]*(u[[0]]*v[[1]] - u[[1]]*v[[0]]) 

True 

sage: s == a(u,v) # indirect doctest 

True 

 

""" 

return TensorFieldParal.__call__(self, *args) 

 

@cached_method 

def exterior_derivative(self): 

r""" 

Compute the exterior derivative of ``self``. 

 

OUTPUT: 

 

- a :class:`DiffFormParal` representing the exterior 

derivative of the differential form 

 

EXAMPLES: 

 

Exterior derivative of a 1-form on a 4-dimensional manifold:: 

 

sage: M = Manifold(4, 'M') 

sage: c_txyz.<t,x,y,z> = M.chart() 

sage: a = M.one_form('A') 

sage: a[:] = (t*x*y*z, z*y**2, x*z**2, x**2 + y**2) 

sage: da = a.exterior_derivative() ; da 

2-form dA on the 4-dimensional differentiable manifold M 

sage: da.display() 

dA = -t*y*z dt/\dx - t*x*z dt/\dy - t*x*y dt/\dz 

+ (-2*y*z + z^2) dx/\dy + (-y^2 + 2*x) dx/\dz 

+ (-2*x*z + 2*y) dy/\dz 

sage: latex(da) 

\mathrm{d}A 

 

The result is cached, i.e. is not recomputed unless ``a`` is changed:: 

 

sage: a.exterior_derivative() is da 

True 

 

Instead of invoking the method :meth:`exterior_derivative`, one may 

use the global function 

:func:`~sage.manifolds.utilities.exterior_derivative` 

or its alias :func:`~sage.manifolds.utilities.xder`:: 

 

sage: from sage.manifolds.utilities import xder 

sage: xder(a) is a.exterior_derivative() 

True 

 

The exterior derivative is nilpotent:: 

 

sage: dda = da.exterior_derivative() ; dda 

3-form ddA on the 4-dimensional differentiable manifold M 

sage: dda.display() 

ddA = 0 

sage: dda == 0 

True 

 

Let us check Cartan's identity:: 

 

sage: v = M.vector_field(name='v') 

sage: v[:] = -y, x, t, z 

sage: a.lie_der(v) == v.contract(xder(a)) + xder(a(v)) # long time 

True 

 

""" 

from sage.calculus.functional import diff 

from sage.tensor.modules.format_utilities import (format_unop_txt, 

format_unop_latex) 

from sage.tensor.modules.comp import CompFullyAntiSym 

from sage.manifolds.differentiable.vectorframe import CoordFrame 

fmodule = self._fmodule # shortcut 

rname = format_unop_txt('d', self._name) 

rlname = format_unop_latex(r'\mathrm{d}', self._latex_name) 

resu = fmodule.alternating_form(self._tensor_rank + 1, 

name=rname, 

latex_name=rlname) 

# 1/ List of all coordinate frames in which the components of self 

# are known 

coord_frames = [] 

for frame in self._components: 

if isinstance(frame, CoordFrame): 

coord_frames.append(frame) 

if not coord_frames: 

# A coordinate frame is searched, at the price of a change of 

# frame, privileging the frame of the domain's default chart 

dom = self._domain 

def_coordf = dom._def_chart._frame 

for frame in self._components: 

if (frame, def_coordf) in dom._frame_changes: 

self.comp(def_coordf, from_basis=frame) 

coord_frames = [def_coordf] 

break 

if not coord_frames: 

for chart in dom._atlas: 

if chart != dom._def_chart: # the case def_chart is 

# treated above 

coordf = chart._frame 

for frame in self._components: 

if (frame, coordf) in dom._frame_changes: 

self.comp(coordf, from_basis=frame) 

coord_frames[coordf] 

break 

if coord_frames: 

break 

# 2/ The computation: 

for frame in coord_frames: 

chart = frame._chart 

sc = self._components[frame] 

dc = CompFullyAntiSym(fmodule._ring, frame, 

self._tensor_rank+1, 

start_index=fmodule._sindex, 

output_formatter=fmodule._output_formatter) 

for ind, val in sc._comp.items(): 

for i in fmodule.irange(): 

ind_d = (i,) + ind 

if len(ind_d) == len(set(ind_d)): 

# all indices are different 

dc[[ind_d]] += \ 

val.coord_function(chart).diff(i).scalar_field() 

resu._components[frame] = dc 

return resu 

 

def wedge(self, other): 

r""" 

Exterior product of ``self`` with another differential form. 

 

INPUT: 

 

- ``other`` -- another differential form 

 

OUTPUT: 

 

- instance of :class:`DiffFormParal` representing the exterior 

product ``self/\other`` 

 

EXAMPLES: 

 

Exterior product of a 1-form and a 2-form on a 3-dimensional 

manifold:: 

 

sage: M = Manifold(3, 'M', start_index=1) 

sage: X.<x,y,z> = M.chart() 

sage: a = M.one_form(name='a') 

sage: a[:] = [2, 1+x, y*z] 

sage: b = M.diff_form(2, name='b') 

sage: b[1,2], b[1,3], b[2,3] = y^2, z+x, z^2 

sage: a.display() 

a = 2 dx + (x + 1) dy + y*z dz 

sage: b.display() 

b = y^2 dx/\dy + (x + z) dx/\dz + z^2 dy/\dz 

sage: s = a.wedge(b); s 

3-form a/\b on the 3-dimensional differentiable manifold M 

sage: s.display() 

a/\b = (-x^2 + (y^3 - x - 1)*z + 2*z^2 - x) dx/\dy/\dz 

 

Check:: 

 

sage: s[1,2,3] == a[1]*b[2,3] + a[2]*b[3,1] + a[3]*b[1,2] 

True 

 

""" 

if self._domain.is_subset(other._domain): 

if not self._ambient_domain.is_subset(other._ambient_domain): 

raise ValueError("incompatible ambient domains for exterior " + 

"product") 

elif other._domain.is_subset(self._domain): 

if not other._ambient_domain.is_subset(self._ambient_domain): 

raise ValueError("incompatible ambient domains for exterior " + 

"product") 

dom_resu = self._domain.intersection(other._domain) 

self_r = self.restrict(dom_resu) 

other_r = other.restrict(dom_resu) 

return FreeModuleAltForm.wedge(self_r, other_r) 

 

def hodge_dual(self, metric): 

r""" 

Compute the Hodge dual of the differential form with respect to some 

metric. 

 

If the differential form is a `p`-form `A`, its *Hodge dual* with 

respect to a pseudo-Riemannian metric `g` is the 

`(n-p)`-form `*A` defined by 

 

.. MATH:: 

 

*A_{i_1\ldots i_{n-p}} = \frac{1}{p!} A_{k_1\ldots k_p} 

\epsilon^{k_1\ldots k_p}_{\qquad\ i_1\ldots i_{n-p}} 

 

where `n` is the manifold's dimension, `\epsilon` is the volume 

`n`-form associated with `g` (see 

:meth:`~sage.manifolds.differentiable.metric.PseudoRiemannianMetric.volume_form`) 

and the indices `k_1,\ldots, k_p` are raised with `g`. 

 

INPUT: 

 

- ``metric``: a pseudo-Riemannian metric defined on the same manifold 

as the current differential form; must be an instance of 

:class:`~sage.manifolds.differentiable.metric.PseudoRiemannianMetric` 

 

OUTPUT: 

 

- the `(n-p)`-form `*A` 

 

EXAMPLES: 

 

Hodge dual of a 1-form in the Euclidean space `R^3`:: 

 

sage: M = Manifold(3, 'M', start_index=1) 

sage: X.<x,y,z> = M.chart() 

sage: g = M.metric('g') # the Euclidean metric 

sage: g[1,1], g[2,2], g[3,3] = 1, 1, 1 

sage: a = M.one_form('A') 

sage: var('Ax Ay Az') 

(Ax, Ay, Az) 

sage: a[:] = (Ax, Ay, Az) 

sage: sa = a.hodge_dual(g) ; sa 

2-form *A on the 3-dimensional differentiable manifold M 

sage: sa.display() 

*A = Az dx/\dy - Ay dx/\dz + Ax dy/\dz 

sage: ssa = sa.hodge_dual(g) ; ssa 

1-form **A on the 3-dimensional differentiable manifold M 

sage: ssa.display() 

**A = Ax dx + Ay dy + Az dz 

sage: ssa == a # must hold for a Riemannian metric in dimension 3 

True 

 

Instead of calling the method :meth:`hodge_dual` on the differential 

form, one can invoke the method 

:meth:`~sage.manifolds.differentiable.metric.PseudoRiemannianMetric.hodge_star` 

of the metric:: 

 

sage: a.hodge_dual(g) == g.hodge_star(a) 

True 

 

See the documentation of 

:meth:`~sage.manifolds.differentiable.metric.PseudoRiemannianMetric.hodge_star` 

for more examples. 

 

""" 

return metric.hodge_star(self) 

 

def interior_product(self, qvect): 

r""" 

Interior product with a multivector field. 

 

If ``self`` is a differential form `A` of degree `p` and `B` is a 

multivector field of degree `q\geq p` on the same manifold, the 

interior product of `A` by `B` is the multivector field `\iota_A B` of 

degree `q-p` defined by 

 

.. MATH:: 

 

(\iota_A B)^{i_1\ldots i_{q-p}} = A_{k_1\ldots k_p} 

B^{k_1\ldots k_p i_1\ldots i_{q-p}} 

 

.. NOTE:: 

 

``A.interior_product(B)`` yields the same result as 

``A.contract(0,..., p-1, B, 0,..., p-1)`` (cf. 

:meth:`~sage.manifolds.differentiable.tensorfield_paral.TensorFieldParal.contract`), 

but ``interior_product`` is more efficient, the alternating 

character of `A` being not used to reduce the computation in 

:meth:`~sage.manifolds.differentiable.tensorfield_paral.TensorFieldParal.contract` 

 

INPUT: 

 

- ``qvect`` -- multivector field `B` (instance of 

:class:`~sage.manifolds.differentiable.multivectorfield.MultivectorFieldParal`); 

the degree of `B` must be at least equal to the degree of 

``self`` 

 

OUTPUT: 

 

- scalar field (case `p=q`) or 

:class:`~sage.manifolds.differentiable.multivectorfield.MultivectorFieldParal` 

(case `p<q`) representing the interior product `\iota_A B`, 

where `A` is ``self`` 

 

.. SEEALSO:: 

 

:meth:`~sage.manifolds.differentiable.multivectorfield.MultivectorFieldParal.interior_product` 

for the interior product of a multivector field with a 

differential form 

 

EXAMPLES: 

 

Interior product of a 1-form with a 2-vector field on a 

3-dimensional manifold:: 

 

sage: M = Manifold(3, 'M', start_index=1) 

sage: X.<x,y,z> = M.chart() 

sage: a = M.one_form(name='a') 

sage: a[:] = [2, 1+x, y*z] 

sage: b = M.multivector_field(2, name='b') 

sage: b[1,2], b[1,3], b[2,3] = y^2, z+x, -z^2 

sage: s = a.interior_product(b); s 

Vector field i_a b on the 3-dimensional differentiable 

manifold M 

sage: s.display() 

i_a b = (-(x + 1)*y^2 - x*y*z - y*z^2) d/dx 

+ (y*z^3 + 2*y^2) d/dy + (-(x + 1)*z^2 + 2*x + 2*z) d/dz 

sage: s == a.contract(b) 

True 

 

Interior product of a 2-form with a 2-vector field:: 

 

sage: a = M.diff_form(2, name='a') 

sage: a[1,2], a[1,3], a[2,3] = x*y, -3, z 

sage: s = a.interior_product(b); s 

Scalar field i_a b on the 3-dimensional differentiable manifold M 

sage: s.display() 

i_a b: M --> R 

(x, y, z) |--> 2*x*y^3 - 2*z^3 - 6*x - 6*z 

sage: s == a.contract(0,1,b,0,1) 

True 

 

""" 

if self._domain.is_subset(qvect._domain): 

if not self._ambient_domain.is_subset(qvect._ambient_domain): 

raise ValueError("incompatible ambient domains for interior " + 

"product") 

elif qvect._domain.is_subset(self._domain): 

if not qvect._ambient_domain.is_subset(self._ambient_domain): 

raise ValueError("incompatible ambient domains for interior " + 

"product") 

dom_resu = self._domain.intersection(qvect._domain) 

self_r = self.restrict(dom_resu) 

qvect_r = qvect.restrict(dom_resu) 

return FreeModuleAltForm.interior_product(self_r, qvect_r)