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

r""" 

Alternating forms on free modules 

 

Given a free module `M` of finite rank over a commutative ring `R` 

and a positive integer `p`, an *alternating form of degree* `p` on `M` is 

a map 

 

.. MATH:: 

 

a:\ \underbrace{M\times\cdots\times M}_{p\ \; \mbox{times}} 

\longrightarrow R 

 

that (i) is multilinear and (ii) vanishes whenever any of two of its 

arguments are equal. 

An alternating form of degree `p` is a tensor on `M` of type `(0,p)`. 

 

Alternating forms are implemented via the class :class:`FreeModuleAltForm`, 

which is a subclass of the generic tensor class 

:class:`~sage.tensor.modules.free_module_tensor.FreeModuleTensor`. 

 

AUTHORS: 

 

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

 

REFERENCES: 

 

- Chap. 23 of R. Godement : *Algebra* [God1968]_ 

- Chap. 15 of S. Lang : *Algebra* [Lan2002]_ 

 

""" 

from __future__ import absolute_import 

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

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

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

# 

# 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.tensor.modules.free_module_tensor import FreeModuleTensor 

from sage.tensor.modules.comp import Components, CompFullyAntiSym 

 

class FreeModuleAltForm(FreeModuleTensor): 

r""" 

Alternating form on a free module of finite rank over a commutative ring. 

 

This is a Sage *element* class, the corresponding *parent* class being 

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

 

INPUT: 

 

- ``fmodule`` -- free module `M` of finite rank over a commutative ring 

`R`, as an instance of 

:class:`~sage.tensor.modules.finite_rank_free_module.FiniteRankFreeModule` 

- ``degree`` -- positive integer; the degree `p` of the 

alternating form (i.e. its tensor rank) 

- ``name`` -- (default: ``None``) string; name given to the alternating 

form 

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

alternating form; if none is provided, ``name`` is used 

 

EXAMPLES: 

 

Alternating form of degree 2 on a rank-3 free module:: 

 

sage: M = FiniteRankFreeModule(ZZ, 3, name='M', start_index=1) 

sage: e = M.basis('e') 

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

Alternating form a of degree 2 on the 

Rank-3 free module M over the Integer Ring 

sage: type(a) 

<class 'sage.tensor.modules.ext_pow_free_module.ExtPowerDualFreeModule_with_category.element_class'> 

sage: a.parent() 

2nd exterior power of the dual of the Rank-3 free module M over the Integer Ring 

sage: a[1,2], a[2,3] = 4, -3 

sage: a.display(e) 

a = 4 e^1/\e^2 - 3 e^2/\e^3 

 

The alternating form acting on the basis elements:: 

 

sage: a(e[1],e[2]) 

4 

sage: a(e[1],e[3]) 

0 

sage: a(e[2],e[3]) 

-3 

sage: a(e[2],e[1]) 

-4 

 

An alternating form of degree 1 is a linear form:: 

 

sage: b = M.linear_form('b') ; b 

Linear form b on the Rank-3 free module M over the Integer Ring 

sage: b[:] = [2,-1,3] # components w.r.t. the module's default basis (e) 

 

A linear form is a tensor of type `(0,1)`:: 

 

sage: b.tensor_type() 

(0, 1) 

 

It is an element of the dual module:: 

 

sage: b.parent() 

Dual of the Rank-3 free module M over the Integer Ring 

sage: b.parent() is M.dual() 

True 

 

The members of a dual basis are linear forms:: 

 

sage: e.dual_basis()[1] 

Linear form e^1 on the Rank-3 free module M over the Integer Ring 

sage: e.dual_basis()[2] 

Linear form e^2 on the Rank-3 free module M over the Integer Ring 

sage: e.dual_basis()[3] 

Linear form e^3 on the Rank-3 free module M over the Integer Ring 

 

Any linear form is expanded onto them:: 

 

sage: b.display(e) 

b = 2 e^1 - e^2 + 3 e^3 

 

In the above example, an equivalent writing would have been 

``b.display()``, since the basis ``e`` is the module's default basis. 

A linear form maps module elements to ring elements:: 

 

sage: v = M([1,1,1]) 

sage: b(v) 

4 

sage: b(v) in M.base_ring() 

True 

 

Test of linearity:: 

 

sage: u = M([-5,-2,7]) 

sage: b(3*u - 4*v) == 3*b(u) - 4*b(v) 

True 

 

The standard tensor operations apply to alternating forms, like the 

extraction of components with respect to a given basis:: 

 

sage: a[e,1,2] 

4 

sage: a[1,2] # since e is the module's default basis 

4 

sage: all( a[i,j] == - a[j,i] for i in {1,2,3} for j in {1,2,3} ) 

True 

 

the tensor product:: 

 

sage: c = b*b ; c 

Symmetric bilinear form b*b on the Rank-3 free module M over the 

Integer Ring 

sage: c.parent() 

Free module of type-(0,2) tensors on the Rank-3 free module M over the 

Integer Ring 

sage: c.display(e) 

b*b = 4 e^1*e^1 - 2 e^1*e^2 + 6 e^1*e^3 - 2 e^2*e^1 + e^2*e^2 

- 3 e^2*e^3 + 6 e^3*e^1 - 3 e^3*e^2 + 9 e^3*e^3 

 

the contractions:: 

 

sage: s = a.contract(v) ; s 

Linear form on the Rank-3 free module M over the Integer Ring 

sage: s.parent() 

Dual of the Rank-3 free module M over the Integer Ring 

sage: s.display(e) 

4 e^1 - 7 e^2 + 3 e^3 

 

or tensor arithmetics:: 

 

sage: s = 3*a + c ; s 

Type-(0,2) tensor on the Rank-3 free module M over the Integer Ring 

sage: s.parent() 

Free module of type-(0,2) tensors on the Rank-3 free module M over the 

Integer Ring 

sage: s.display(e) 

4 e^1*e^1 + 10 e^1*e^2 + 6 e^1*e^3 - 14 e^2*e^1 + e^2*e^2 

- 12 e^2*e^3 + 6 e^3*e^1 + 6 e^3*e^2 + 9 e^3*e^3 

 

Note that tensor arithmetics preserves the alternating character if both 

operands are alternating:: 

 

sage: s = a - 2*a ; s 

Alternating form of degree 2 on the Rank-3 free module M over the 

Integer Ring 

sage: s.parent() # note the difference with s = 3*a + c above 

2nd exterior power of the dual of the Rank-3 free module M over the 

Integer Ring 

sage: s == -a 

True 

 

An operation specific to alternating forms is of course the exterior 

product:: 

 

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

Alternating form a/\b of degree 3 on the Rank-3 free module M over the 

Integer Ring 

sage: s.parent() 

3rd exterior power of the dual of the Rank-3 free module M over the 

Integer Ring 

sage: s.display(e) 

a/\b = 6 e^1/\e^2/\e^3 

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

True 

 

The exterior product is nilpotent on linear forms:: 

 

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

Alternating form b/\b of degree 2 on the Rank-3 free module M over the 

Integer Ring 

sage: s.display(e) 

b/\b = 0 

 

""" 

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

r""" 

Initialize ``self``. 

 

TESTS:: 

 

sage: from sage.tensor.modules.free_module_alt_form import FreeModuleAltForm 

sage: M = FiniteRankFreeModule(ZZ, 3, name='M') 

sage: e = M.basis('e') 

sage: a = FreeModuleAltForm(M, 2, name='a') 

sage: a[e,0,1] = 2 

sage: TestSuite(a).run(skip="_test_category") # see below 

 

In the above test suite, _test_category fails because a is not an 

instance of a.parent().category().element_class. Actually alternating 

forms must be constructed via ExtPowerDualFreeModule.element_class and 

not by a direct call to FreeModuleAltForm:: 

 

sage: a1 = M.dual_exterior_power(2).element_class(M, 2, name='a') 

sage: a1[e,0,1] = 2 

sage: TestSuite(a1).run() 

 

""" 

FreeModuleTensor.__init__(self, fmodule, (0,degree), name=name, 

latex_name=latex_name, 

antisym=range(degree), 

parent=fmodule.dual_exterior_power(degree)) 

 

def _repr_(self): 

r""" 

Return a string representation of ``self``. 

 

EXAMPLES:: 

 

sage: M = FiniteRankFreeModule(ZZ, 3, name='M') 

sage: M.alternating_form(1) 

Linear form on the Rank-3 free module M over the Integer Ring 

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

Linear form a on the Rank-3 free module M over the Integer Ring 

sage: M.alternating_form(2) 

Alternating form of degree 2 on the 

Rank-3 free module M over the Integer Ring 

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

Alternating form a of degree 2 on the 

Rank-3 free module M over the Integer Ring 

""" 

if self._tensor_rank == 1: 

description = "Linear form " 

if self._name is not None: 

description += self._name + " " 

else: 

description = "Alternating form " 

if self._name is not None: 

description += self._name + " " 

description += "of degree {} ".format(self._tensor_rank) 

description += "on the {}".format(self._fmodule) 

return description 

 

def _new_instance(self): 

r""" 

Create an instance of the same class as ``self``, on the same module 

and of the same degree. 

 

EXAMPLES:: 

 

sage: M = FiniteRankFreeModule(ZZ, 3, name='M') 

sage: a = M.alternating_form(1) 

sage: a._new_instance() 

Linear form on the Rank-3 free module M over the Integer Ring 

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

True 

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

sage: b._new_instance() 

Alternating form of degree 2 on the 

Rank-3 free module M over the Integer Ring 

sage: b._new_instance().parent() is b.parent() 

True 

 

""" 

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

 

def _new_comp(self, basis): 

r""" 

Create some (uninitialized) components of ``self`` in a given basis. 

 

This method, which is already implemented in 

:meth:`FreeModuleTensor._new_comp`, is redefined here for efficiency. 

 

INPUT: 

 

- ``basis`` -- basis of the free module on which ``self`` is defined 

 

OUTPUT: 

 

- an instance of :class:`~sage.tensor.modules.comp.CompFullyAntiSym`, 

or of :class:`~sage.tensor.modules.comp.Components` if 

the degree of ``self`` is 1. 

 

EXAMPLES:: 

 

sage: M = FiniteRankFreeModule(ZZ, 3, name='M') 

sage: e = M.basis('e') 

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

sage: a._new_comp(e) 

Fully antisymmetric 2-indices components w.r.t. Basis (e_0,e_1,e_2) 

on the Rank-3 free module M over the Integer Ring 

sage: a = M.alternating_form(1) 

sage: a._new_comp(e) 

1-index components w.r.t. Basis (e_0,e_1,e_2) on the Rank-3 free 

module M over the Integer Ring 

 

""" 

fmodule = self._fmodule # the base free module 

if self._tensor_rank == 1: 

return Components(fmodule._ring, basis, 1, 

start_index=fmodule._sindex, 

output_formatter=fmodule._output_formatter) 

 

return CompFullyAntiSym(fmodule._ring, basis, self._tensor_rank, 

start_index=fmodule._sindex, 

output_formatter=fmodule._output_formatter) 

 

def degree(self): 

r""" 

Return the degree of ``self``. 

 

EXAMPLES:: 

 

sage: M = FiniteRankFreeModule(ZZ, 3, name='M') 

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

sage: a.degree() 

2 

 

""" 

return self._tensor_rank 

 

 

def display(self, basis=None, format_spec=None): 

r""" 

Display the alternating form ``self`` in terms of its expansion w.r.t. 

a given module basis. 

 

The expansion is actually performed onto exterior products of elements 

of the cobasis (dual basis) associated with ``basis`` (see examples 

below). The output is either text-formatted (console mode) or 

LaTeX-formatted (notebook mode). 

 

INPUT: 

 

- ``basis`` -- (default: ``None``) basis of the free module with 

respect to which the alternating form is expanded; if none is 

provided, the module's default basis is assumed 

- ``format_spec`` -- (default: ``None``) format specification passed 

to ``self._fmodule._output_formatter`` to format the output 

 

EXAMPLES: 

 

Display of an alternating form of degree 1 (linear form) on a rank-3 

free module:: 

 

sage: M = FiniteRankFreeModule(ZZ, 3, name='M') 

sage: e = M.basis('e') 

sage: e.dual_basis() 

Dual basis (e^0,e^1,e^2) on the Rank-3 free module M over the Integer Ring 

sage: a = M.linear_form('a', latex_name=r'\alpha') 

sage: a[:] = [1,-3,4] 

sage: a.display(e) 

a = e^0 - 3 e^1 + 4 e^2 

sage: a.display() # a shortcut since e is M's default basis 

a = e^0 - 3 e^1 + 4 e^2 

sage: latex(a.display()) # display in the notebook 

\alpha = e^{0} -3 e^{1} + 4 e^{2} 

 

A shortcut is ``disp()``:: 

 

sage: a.disp() 

a = e^0 - 3 e^1 + 4 e^2 

 

Display of an alternating form of degree 2 on a rank-3 free module:: 

 

sage: b = M.alternating_form(2, 'b', latex_name=r'\beta') 

sage: b[0,1], b[0,2], b[1,2] = 3, 2, -1 

sage: b.display() 

b = 3 e^0/\e^1 + 2 e^0/\e^2 - e^1/\e^2 

sage: latex(b.display()) # display in the notebook 

\beta = 3 e^{0}\wedge e^{1} + 2 e^{0}\wedge e^{2} -e^{1}\wedge e^{2} 

 

Display of an alternating form of degree 3 on a rank-3 free module:: 

 

sage: c = M.alternating_form(3, 'c') 

sage: c[0,1,2] = 4 

sage: c.display() 

c = 4 e^0/\e^1/\e^2 

sage: latex(c.display()) 

c = 4 e^{0}\wedge e^{1}\wedge e^{2} 

 

Display of a vanishing alternating form:: 

 

sage: c[0,1,2] = 0 # the only independent component set to zero 

sage: c.is_zero() 

True 

sage: c.display() 

c = 0 

sage: latex(c.display()) 

c = 0 

sage: c[0,1,2] = 4 # value restored for what follows 

 

Display in a basis which is not the default one:: 

 

sage: aut = M.automorphism(matrix=[[0,1,0], [0,0,-1], [1,0,0]], 

....: basis=e) 

sage: f = e.new_basis(aut, 'f') 

sage: a.display(f) 

a = 4 f^0 + f^1 + 3 f^2 

sage: a.disp(f) # shortcut notation 

a = 4 f^0 + f^1 + 3 f^2 

sage: b.display(f) 

b = -2 f^0/\f^1 - f^0/\f^2 - 3 f^1/\f^2 

sage: c.display(f) 

c = -4 f^0/\f^1/\f^2 

 

The output format can be set via the argument ``output_formatter`` 

passed at the module construction:: 

 

sage: N = FiniteRankFreeModule(QQ, 3, name='N', start_index=1, 

....: output_formatter=Rational.numerical_approx) 

sage: e = N.basis('e') 

sage: b = N.alternating_form(2, 'b') 

sage: b[1,2], b[1,3], b[2,3] = 1/3, 5/2, 4 

sage: b.display() # default format (53 bits of precision) 

b = 0.333333333333333 e^1/\e^2 + 2.50000000000000 e^1/\e^3 

+ 4.00000000000000 e^2/\e^3 

 

The output format is then controlled by the argument ``format_spec`` of 

the method :meth:`display`:: 

 

sage: b.display(format_spec=10) # 10 bits of precision 

b = 0.33 e^1/\e^2 + 2.5 e^1/\e^3 + 4.0 e^2/\e^3 

 

Check that the bug reported in :trac:`22520` is fixed:: 

 

sage: M = FiniteRankFreeModule(SR, 2, name='M') 

sage: e = M.basis('e') 

sage: a = M.alternating_form(2) 

sage: a[0,1] = SR.var('t', domain='real') 

sage: a.display() 

t e^0/\e^1 

 

""" 

from sage.misc.latex import latex 

from sage.tensor.modules.format_utilities import is_atomic, \ 

FormattedExpansion 

if basis is None: 

basis = self._fmodule._def_basis 

cobasis = basis.dual_basis() 

comp = self.comp(basis) 

terms_txt = [] 

terms_latex = [] 

for ind in comp.non_redundant_index_generator(): 

ind_arg = ind + (format_spec,) 

coef = comp[ind_arg] 

# Check whether the coefficient is zero, preferably via 

# the fast method is_trivial_zero(): 

if hasattr(coef, 'is_trivial_zero'): 

zero_coef = coef.is_trivial_zero() 

else: 

zero_coef = coef == 0 

if not zero_coef: 

bases_txt = [] 

bases_latex = [] 

for k in range(self._tensor_rank): 

bases_txt.append(cobasis[ind[k]]._name) 

bases_latex.append(latex(cobasis[ind[k]])) 

basis_term_txt = "/\\".join(bases_txt) 

basis_term_latex = r"\wedge ".join(bases_latex) 

coef_txt = repr(coef) 

if coef_txt == "1": 

terms_txt.append(basis_term_txt) 

terms_latex.append(basis_term_latex) 

elif coef_txt == "-1": 

terms_txt.append("-" + basis_term_txt) 

terms_latex.append("-" + basis_term_latex) 

else: 

coef_latex = latex(coef) 

if is_atomic(coef_txt): 

terms_txt.append(coef_txt + " " + basis_term_txt) 

else: 

terms_txt.append("(" + coef_txt + ") " + 

basis_term_txt) 

if is_atomic(coef_latex): 

terms_latex.append(coef_latex + basis_term_latex) 

else: 

terms_latex.append(r"\left(" + coef_latex + \ 

r"\right)" + basis_term_latex) 

if not terms_txt: 

expansion_txt = "0" 

else: 

expansion_txt = terms_txt[0] 

for term in terms_txt[1:]: 

if term[0] == "-": 

expansion_txt += " - " + term[1:] 

else: 

expansion_txt += " + " + term 

if not terms_latex: 

expansion_latex = "0" 

else: 

expansion_latex = terms_latex[0] 

for term in terms_latex[1:]: 

if term[0] == "-": 

expansion_latex += term 

else: 

expansion_latex += "+" + term 

if self._name is None: 

resu_txt = expansion_txt 

else: 

resu_txt = self._name + " = " + expansion_txt 

if self._latex_name is None: 

resu_latex = expansion_latex 

else: 

resu_latex = latex(self) + " = " + expansion_latex 

return FormattedExpansion(resu_txt, resu_latex) 

 

disp = display 

 

 

def wedge(self, other): 

r""" 

Exterior product of ``self`` with the alternating form ``other``. 

 

INPUT: 

 

- ``other`` -- an alternating form 

 

OUTPUT: 

 

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

product ``self/\other`` 

 

EXAMPLES: 

 

Exterior product of two linear forms:: 

 

sage: M = FiniteRankFreeModule(ZZ, 3, name='M') 

sage: e = M.basis('e') 

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

sage: a[:] = [1,-3,4] 

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

sage: b[:] = [2,-1,2] 

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

Alternating form A/\B of degree 2 on the Rank-3 free module M 

over the Integer Ring 

sage: c.display() 

A/\B = 5 e^0/\e^1 - 6 e^0/\e^2 - 2 e^1/\e^2 

sage: latex(c) 

A\wedge B 

sage: latex(c.display()) 

A\wedge B = 5 e^{0}\wedge e^{1} -6 e^{0}\wedge e^{2} -2 e^{1}\wedge e^{2} 

 

Test of the computation:: 

 

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

True 

 

Exterior product of a linear form and an alternating form of degree 2:: 

 

sage: d = M.linear_form('D') 

sage: d[:] = [-1,2,4] 

sage: s = d.wedge(c) ; s 

Alternating form D/\A/\B of degree 3 on the Rank-3 free module M 

over the Integer Ring 

sage: s.display() 

D/\A/\B = 34 e^0/\e^1/\e^2 

 

Test of the computation:: 

 

sage: s[0,1,2] == d[0]*c[1,2] + d[1]*c[2,0] + d[2]*c[0,1] 

True 

 

Let us check that the exterior product is associative:: 

 

sage: d.wedge(a.wedge(b)) == (d.wedge(a)).wedge(b) 

True 

 

and that it is graded anticommutative:: 

 

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

True 

sage: d.wedge(c) == c.wedge(d) 

True 

 

""" 

from .format_utilities import is_atomic 

if not isinstance(other, FreeModuleAltForm): 

raise TypeError("the second argument for the exterior product " + 

"must be an alternating form") 

if other._tensor_rank == 0: 

return other*self 

if self._tensor_rank == 0: 

return self*other 

fmodule = self._fmodule 

basis = self.common_basis(other) 

if basis is None: 

raise ValueError("no common basis for the exterior product") 

rank_r = self._tensor_rank + other._tensor_rank 

cmp_s = self._components[basis] 

cmp_o = other._components[basis] 

cmp_r = CompFullyAntiSym(fmodule._ring, basis, rank_r, 

start_index=fmodule._sindex, 

output_formatter=fmodule._output_formatter) 

for ind_s, val_s in cmp_s._comp.items(): 

for ind_o, val_o in cmp_o._comp.items(): 

ind_r = ind_s + ind_o 

if len(ind_r) == len(set(ind_r)): # all indices are different 

cmp_r[[ind_r]] += val_s * val_o 

result = fmodule.alternating_form(rank_r) 

result._components[basis] = cmp_r 

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 + ')' 

result._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 + ')' 

result._latex_name = slname + r'\wedge ' + olname 

return result 

 

def interior_product(self, alt_tensor): 

r""" 

Interior product with an alternating contravariant tensor. 

 

If ``self`` is an alternating form `A` of degree `p` and `B` is an 

alternating contravariant tensor of degree `q\geq p` on the same free 

module, the interior product of `A` by `B` is the alternating 

contravariant tensor `\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.tensor.modules.free_module_tensor.FreeModuleTensor.contract`), 

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

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

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

 

INPUT: 

 

- ``alt_tensor`` -- alternating contravariant tensor `B` (instance of 

:class:`~sage.tensor.modules.alternating_contr_tensor.AlternatingContrTensor`); 

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

 

OUTPUT: 

 

- element of the base ring (case `p=q`) or 

:class:`~sage.tensor.modules.alternating_contr_tensor.AlternatingContrTensor` 

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

is ``self`` 

 

.. SEEALSO:: 

 

:meth:`~sage.tensor.modules.alternating_contr_tensor.AlternatingContrTensor.interior_product` 

for the interior product of an alternating contravariant tensor by 

an alternating form 

 

EXAMPLES: 

 

Let us consider a rank-3 free module:: 

 

sage: M = FiniteRankFreeModule(ZZ, 3, name='M', start_index=1) 

sage: e = M.basis('e') 

 

and various interior products on it, starting with a linear form 

(``p=1``) and a module element (``q=1``):: 

 

sage: a = M.linear_form(name='A') 

sage: a[:] = [-2, 4, 3] 

sage: b = M([3, 1, 5], basis=e, name='B') 

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

13 

sage: c == a.contract(b) 

True 

 

Case ``p=1`` and ``q=2``:: 

 

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

sage: b[1,2], b[1,3], b[2,3] = 5, 2, 3 

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

Element i_A B of the Rank-3 free module M over the Integer Ring 

sage: c.display() 

i_A B = -26 e_1 - 19 e_2 + 8 e_3 

sage: latex(c) 

\iota_{A} B 

sage: c == a.contract(b) 

True 

 

Case ``p=1`` and ``q=3``:: 

 

sage: b = M.alternating_contravariant_tensor(3, name='B') 

sage: b[1,2,3] = 5 

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

Alternating contravariant tensor i_A B of degree 2 on the Rank-3 free module M over the Integer Ring 

sage: c.display() 

i_A B = 15 e_1/\e_2 - 20 e_1/\e_3 - 10 e_2/\e_3 

sage: c == a.contract(b) 

True 

 

Case ``p=2`` and ``q=2``:: 

 

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

sage: a[1,2], a[1,3], a[2,3] = 2, -3, 1 

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

sage: b[1,2], b[1,3], b[2,3] = 5, 2, 3 

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

14 

sage: c == a.contract(0, 1, b, 0, 1) # contraction on all indices of a 

True 

 

Case ``p=2`` and ``q=3``:: 

 

sage: b = M.alternating_contravariant_tensor(3, name='B') 

sage: b[1,2,3] = 5 

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

Element i_A B of the Rank-3 free module M over the Integer Ring 

sage: c.display() 

i_A B = 10 e_1 + 30 e_2 + 20 e_3 

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

True 

 

Case ``p=3`` and ``q=3``:: 

 

sage: a = M.alternating_form(3, name='A') 

sage: a[1,2,3] = -2 

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

-60 

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

True 

 

""" 

from .format_utilities import is_atomic 

from .alternating_contr_tensor import AlternatingContrTensor 

if not isinstance(alt_tensor, AlternatingContrTensor): 

raise TypeError("{} is not an alternating ".format(alt_tensor) + 

"contravariant tensor") 

p_res = alt_tensor._tensor_rank - self._tensor_rank # degree of result 

if self._tensor_rank == 1: 

# Case p = 1: 

res = self.contract(alt_tensor) # contract() deals efficiently 

# with antisymmetry for p = 1 

else: 

# Case p > 1: 

if alt_tensor._fmodule != self._fmodule: 

raise ValueError("{} is not defined on ".format(alt_tensor) + 

"the same module as the {}".format(self)) 

if alt_tensor._tensor_rank < self._tensor_rank: 

raise ValueError("the degree of the {} ".format(alt_tensor) + 

"is lower than that of the {}".format(self)) 

# Interior product at the component level: 

basis = self.common_basis(alt_tensor) 

if basis is None: 

raise ValueError("no common basis for the interior product") 

comp = self._components[basis].interior_product( 

alt_tensor._components[basis]) 

if p_res == 0: 

res = comp # result is a scalar 

else: 

res = self._fmodule.tensor_from_comp((p_res, 0), comp) 

# Name of the result 

res_name = None 

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

sname = self._name 

oname = alt_tensor._name 

if not is_atomic(sname): 

sname = '(' + sname + ')' 

if not is_atomic(oname): 

oname = '(' + oname + ')' 

res_name = 'i_' + sname + ' ' + oname 

res_latex_name = None 

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

slname = self._latex_name 

olname = alt_tensor._latex_name 

if not is_atomic(olname): 

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

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

if p_res == 0: 

if res_name: 

try: # there is no guarantee that base ring elements have 

# set_name 

res.set_name(res_name, latex_name=res_latex_name) 

except (AttributeError, TypeError): 

pass 

else: 

res.set_name(res_name, latex_name=res_latex_name) 

return res