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

from __future__ import print_function, division 

 

from sympy.core import S, sympify 

from sympy.core.add import Add 

from sympy.core.containers import Tuple 

from sympy.core.operations import LatticeOp, ShortCircuit 

from sympy.core.function import Application, Lambda, ArgumentIndexError 

from sympy.core.expr import Expr 

from sympy.core.mul import Mul 

from sympy.core.numbers import Rational 

from sympy.core.power import Pow 

from sympy.core.relational import Equality 

from sympy.core.singleton import Singleton 

from sympy.core.symbol import Dummy 

from sympy.core.rules import Transform 

from sympy.core.compatibility import as_int, with_metaclass, range 

from sympy.core.logic import fuzzy_and, fuzzy_or, _torf 

from sympy.functions.elementary.integers import floor 

from sympy.logic.boolalg import And 

 

class IdentityFunction(with_metaclass(Singleton, Lambda)): 

""" 

The identity function 

 

Examples 

======== 

 

>>> from sympy import Id, Symbol 

>>> x = Symbol('x') 

>>> Id(x) 

x 

 

""" 

 

def __new__(cls): 

from sympy.sets.sets import FiniteSet 

x = Dummy('x') 

#construct "by hand" to avoid infinite loop 

obj = Expr.__new__(cls, Tuple(x), x) 

obj.nargs = FiniteSet(1) 

return obj 

 

Id = S.IdentityFunction 

 

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

############################# ROOT and SQUARE ROOT FUNCTION ################### 

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

 

 

def sqrt(arg): 

"""The square root function 

 

sqrt(x) -> Returns the principal square root of x. 

 

Examples 

======== 

 

>>> from sympy import sqrt, Symbol 

>>> x = Symbol('x') 

 

>>> sqrt(x) 

sqrt(x) 

 

>>> sqrt(x)**2 

x 

 

Note that sqrt(x**2) does not simplify to x. 

 

>>> sqrt(x**2) 

sqrt(x**2) 

 

This is because the two are not equal to each other in general. 

For example, consider x == -1: 

 

>>> from sympy import Eq 

>>> Eq(sqrt(x**2), x).subs(x, -1) 

False 

 

This is because sqrt computes the principal square root, so the square may 

put the argument in a different branch. This identity does hold if x is 

positive: 

 

>>> y = Symbol('y', positive=True) 

>>> sqrt(y**2) 

y 

 

You can force this simplification by using the powdenest() function with 

the force option set to True: 

 

>>> from sympy import powdenest 

>>> sqrt(x**2) 

sqrt(x**2) 

>>> powdenest(sqrt(x**2), force=True) 

x 

 

To get both branches of the square root you can use the rootof function: 

 

>>> from sympy import rootof 

 

>>> [rootof(x**2-3,i) for i in (0,1)] 

[-sqrt(3), sqrt(3)] 

 

See Also 

======== 

 

sympy.polys.rootoftools.rootof, root, real_root 

 

References 

========== 

 

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

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

""" 

# arg = sympify(arg) is handled by Pow 

return Pow(arg, S.Half) 

 

 

def cbrt(arg): 

"""This function computes the principial cube root of `arg`, so 

it's just a shortcut for `arg**Rational(1, 3)`. 

 

Examples 

======== 

 

>>> from sympy import cbrt, Symbol 

>>> x = Symbol('x') 

 

>>> cbrt(x) 

x**(1/3) 

 

>>> cbrt(x)**3 

x 

 

Note that cbrt(x**3) does not simplify to x. 

 

>>> cbrt(x**3) 

(x**3)**(1/3) 

 

This is because the two are not equal to each other in general. 

For example, consider `x == -1`: 

 

>>> from sympy import Eq 

>>> Eq(cbrt(x**3), x).subs(x, -1) 

False 

 

This is because cbrt computes the principal cube root, this 

identity does hold if `x` is positive: 

 

>>> y = Symbol('y', positive=True) 

>>> cbrt(y**3) 

y 

 

See Also 

======== 

 

sympy.polys.rootoftools.rootof, root, real_root 

 

References 

========== 

 

* http://en.wikipedia.org/wiki/Cube_root 

* http://en.wikipedia.org/wiki/Principal_value 

 

""" 

return Pow(arg, Rational(1, 3)) 

 

 

def root(arg, n, k=0): 

"""root(x, n, k) -> Returns the k-th n-th root of x, defaulting to the 

principle root (k=0). 

 

 

Examples 

======== 

 

>>> from sympy import root, Rational 

>>> from sympy.abc import x, n 

 

>>> root(x, 2) 

sqrt(x) 

 

>>> root(x, 3) 

x**(1/3) 

 

>>> root(x, n) 

x**(1/n) 

 

>>> root(x, -Rational(2, 3)) 

x**(-3/2) 

 

To get the k-th n-th root, specify k: 

 

>>> root(-2, 3, 2) 

-(-1)**(2/3)*2**(1/3) 

 

To get all n n-th roots you can use the rootof function. 

The following examples show the roots of unity for n 

equal 2, 3 and 4: 

 

>>> from sympy import rootof, I 

 

>>> [rootof(x**2 - 1, i) for i in range(2)] 

[-1, 1] 

 

>>> [rootof(x**3 - 1,i) for i in range(3)] 

[1, -1/2 - sqrt(3)*I/2, -1/2 + sqrt(3)*I/2] 

 

>>> [rootof(x**4 - 1,i) for i in range(4)] 

[-1, 1, -I, I] 

 

SymPy, like other symbolic algebra systems, returns the 

complex root of negative numbers. This is the principal 

root and differs from the text-book result that one might 

be expecting. For example, the cube root of -8 does not 

come back as -2: 

 

>>> root(-8, 3) 

2*(-1)**(1/3) 

 

The real_root function can be used to either make the principle 

result real (or simply to return the real root directly): 

 

>>> from sympy import real_root 

>>> real_root(_) 

-2 

>>> real_root(-32, 5) 

-2 

 

Alternatively, the n//2-th n-th root of a negative number can be 

computed with root: 

 

>>> root(-32, 5, 5//2) 

-2 

 

See Also 

======== 

 

sympy.polys.rootoftools.rootof 

sympy.core.power.integer_nthroot 

sqrt, real_root 

 

References 

========== 

 

* http://en.wikipedia.org/wiki/Square_root 

* http://en.wikipedia.org/wiki/Real_root 

* http://en.wikipedia.org/wiki/Root_of_unity 

* http://en.wikipedia.org/wiki/Principal_value 

* http://mathworld.wolfram.com/CubeRoot.html 

 

""" 

n = sympify(n) 

if k: 

return Pow(arg, S.One/n)*S.NegativeOne**(2*k/n) 

return Pow(arg, 1/n) 

 

 

def real_root(arg, n=None): 

"""Return the real nth-root of arg if possible. If n is omitted then 

all instances of (-n)**(1/odd) will be changed to -n**(1/odd); this 

will only create a real root of a principle root -- the presence of 

other factors may cause the result to not be real. 

 

Examples 

======== 

 

>>> from sympy import root, real_root, Rational 

>>> from sympy.abc import x, n 

 

>>> real_root(-8, 3) 

-2 

>>> root(-8, 3) 

2*(-1)**(1/3) 

>>> real_root(_) 

-2 

 

If one creates a non-principle root and applies real_root, the 

result will not be real (so use with caution): 

 

>>> root(-8, 3, 2) 

-2*(-1)**(2/3) 

>>> real_root(_) 

-2*(-1)**(2/3) 

 

 

See Also 

======== 

 

sympy.polys.rootoftools.rootof 

sympy.core.power.integer_nthroot 

root, sqrt 

""" 

from sympy import im, Piecewise 

if n is not None: 

try: 

n = as_int(n) 

arg = sympify(arg) 

if arg.is_positive or arg.is_negative: 

rv = root(arg, n) 

else: 

raise ValueError 

except ValueError: 

return root(arg, n)*Piecewise( 

(S.One, ~Equality(im(arg), 0)), 

(Pow(S.NegativeOne, S.One/n)**(2*floor(n/2)), And( 

Equality(n % 2, 1), 

arg < 0)), 

(S.One, True)) 

else: 

rv = sympify(arg) 

n1pow = Transform(lambda x: -(-x.base)**x.exp, 

lambda x: 

x.is_Pow and 

x.base.is_negative and 

x.exp.is_Rational and 

x.exp.p == 1 and x.exp.q % 2) 

return rv.xreplace(n1pow) 

 

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

############################# MINIMUM and MAXIMUM ############################# 

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

 

 

class MinMaxBase(Expr, LatticeOp): 

def __new__(cls, *args, **assumptions): 

if not args: 

raise ValueError("The Max/Min functions must have arguments.") 

 

args = (sympify(arg) for arg in args) 

 

# first standard filter, for cls.zero and cls.identity 

# also reshape Max(a, Max(b, c)) to Max(a, b, c) 

try: 

_args = frozenset(cls._new_args_filter(args)) 

except ShortCircuit: 

return cls.zero 

 

# second filter 

# variant I: remove ones which can be removed 

# args = cls._collapse_arguments(set(_args), **assumptions) 

 

# variant II: find local zeros 

args = cls._find_localzeros(set(_args), **assumptions) 

 

if not args: 

return cls.identity 

elif len(args) == 1: 

return args.pop() 

else: 

# base creation 

# XXX should _args be made canonical with sorting? 

_args = frozenset(args) 

obj = Expr.__new__(cls, _args, **assumptions) 

obj._argset = _args 

return obj 

 

@classmethod 

def _new_args_filter(cls, arg_sequence): 

""" 

Generator filtering args. 

 

first standard filter, for cls.zero and cls.identity. 

Also reshape Max(a, Max(b, c)) to Max(a, b, c), 

and check arguments for comparability 

""" 

for arg in arg_sequence: 

 

# pre-filter, checking comparability of arguments 

if (not isinstance(arg, Expr)) or (arg.is_real is False) or (arg is S.ComplexInfinity): 

raise ValueError("The argument '%s' is not comparable." % arg) 

 

if arg == cls.zero: 

raise ShortCircuit(arg) 

elif arg == cls.identity: 

continue 

elif arg.func == cls: 

for x in arg.args: 

yield x 

else: 

yield arg 

 

@classmethod 

def _find_localzeros(cls, values, **options): 

""" 

Sequentially allocate values to localzeros. 

 

When a value is identified as being more extreme than another member it 

replaces that member; if this is never true, then the value is simply 

appended to the localzeros. 

""" 

localzeros = set() 

for v in values: 

is_newzero = True 

localzeros_ = list(localzeros) 

for z in localzeros_: 

if id(v) == id(z): 

is_newzero = False 

else: 

con = cls._is_connected(v, z) 

if con: 

is_newzero = False 

if con is True or con == cls: 

localzeros.remove(z) 

localzeros.update([v]) 

if is_newzero: 

localzeros.update([v]) 

return localzeros 

 

@classmethod 

def _is_connected(cls, x, y): 

""" 

Check if x and y are connected somehow. 

""" 

from sympy.core.exprtools import factor_terms 

def hit(v, t, f): 

if not v.is_Relational: 

return t if v else f 

for i in range(2): 

if x == y: 

return True 

r = hit(x >= y, Max, Min) 

if r is not None: 

return r 

r = hit(y <= x, Max, Min) 

if r is not None: 

return r 

r = hit(x <= y, Min, Max) 

if r is not None: 

return r 

r = hit(y >= x, Min, Max) 

if r is not None: 

return r 

# simplification can be expensive, so be conservative 

# in what is attempted 

x = factor_terms(x - y) 

y = S.Zero 

 

return False 

 

def _eval_derivative(self, s): 

# f(x).diff(s) -> x.diff(s) * f.fdiff(1)(s) 

i = 0 

l = [] 

for a in self.args: 

i += 1 

da = a.diff(s) 

if da is S.Zero: 

continue 

try: 

df = self.fdiff(i) 

except ArgumentIndexError: 

df = Function.fdiff(self, i) 

l.append(df * da) 

return Add(*l) 

 

def evalf(self, prec=None, **options): 

return self.func(*[a.evalf(prec, **options) for a in self.args]) 

n = evalf 

 

_eval_is_algebraic = lambda s: _torf(i.is_algebraic for i in s.args) 

_eval_is_antihermitian = lambda s: _torf(i.is_antihermitian for i in s.args) 

_eval_is_commutative = lambda s: _torf(i.is_commutative for i in s.args) 

_eval_is_complex = lambda s: _torf(i.is_complex for i in s.args) 

_eval_is_composite = lambda s: _torf(i.is_composite for i in s.args) 

_eval_is_even = lambda s: _torf(i.is_even for i in s.args) 

_eval_is_finite = lambda s: _torf(i.is_finite for i in s.args) 

_eval_is_hermitian = lambda s: _torf(i.is_hermitian for i in s.args) 

_eval_is_imaginary = lambda s: _torf(i.is_imaginary for i in s.args) 

_eval_is_infinite = lambda s: _torf(i.is_infinite for i in s.args) 

_eval_is_integer = lambda s: _torf(i.is_integer for i in s.args) 

_eval_is_irrational = lambda s: _torf(i.is_irrational for i in s.args) 

_eval_is_negative = lambda s: _torf(i.is_negative for i in s.args) 

_eval_is_noninteger = lambda s: _torf(i.is_noninteger for i in s.args) 

_eval_is_nonnegative = lambda s: _torf(i.is_nonnegative for i in s.args) 

_eval_is_nonpositive = lambda s: _torf(i.is_nonpositive for i in s.args) 

_eval_is_nonzero = lambda s: _torf(i.is_nonzero for i in s.args) 

_eval_is_odd = lambda s: _torf(i.is_odd for i in s.args) 

_eval_is_polar = lambda s: _torf(i.is_polar for i in s.args) 

_eval_is_positive = lambda s: _torf(i.is_positive for i in s.args) 

_eval_is_prime = lambda s: _torf(i.is_prime for i in s.args) 

_eval_is_rational = lambda s: _torf(i.is_rational for i in s.args) 

_eval_is_real = lambda s: _torf(i.is_real for i in s.args) 

_eval_is_transcendental = lambda s: _torf(i.is_transcendental for i in s.args) 

_eval_is_zero = lambda s: _torf(i.is_zero for i in s.args) 

 

class Max(MinMaxBase, Application): 

""" 

Return, if possible, the maximum value of the list. 

 

When number of arguments is equal one, then 

return this argument. 

 

When number of arguments is equal two, then 

return, if possible, the value from (a, b) that is >= the other. 

 

In common case, when the length of list greater than 2, the task 

is more complicated. Return only the arguments, which are greater 

than others, if it is possible to determine directional relation. 

 

If is not possible to determine such a relation, return a partially 

evaluated result. 

 

Assumptions are used to make the decision too. 

 

Also, only comparable arguments are permitted. 

 

It is named ``Max`` and not ``max`` to avoid conflicts 

with the built-in function ``max``. 

 

 

Examples 

======== 

 

>>> from sympy import Max, Symbol, oo 

>>> from sympy.abc import x, y 

>>> p = Symbol('p', positive=True) 

>>> n = Symbol('n', negative=True) 

 

>>> Max(x, -2) #doctest: +SKIP 

Max(x, -2) 

>>> Max(x, -2).subs(x, 3) 

3 

>>> Max(p, -2) 

p 

>>> Max(x, y) #doctest: +SKIP 

Max(x, y) 

>>> Max(x, y) == Max(y, x) 

True 

>>> Max(x, Max(y, z)) #doctest: +SKIP 

Max(x, y, z) 

>>> Max(n, 8, p, 7, -oo) #doctest: +SKIP 

Max(8, p) 

>>> Max (1, x, oo) 

oo 

 

* Algorithm 

 

The task can be considered as searching of supremums in the 

directed complete partial orders [1]_. 

 

The source values are sequentially allocated by the isolated subsets 

in which supremums are searched and result as Max arguments. 

 

If the resulted supremum is single, then it is returned. 

 

The isolated subsets are the sets of values which are only the comparable 

with each other in the current set. E.g. natural numbers are comparable with 

each other, but not comparable with the `x` symbol. Another example: the 

symbol `x` with negative assumption is comparable with a natural number. 

 

Also there are "least" elements, which are comparable with all others, 

and have a zero property (maximum or minimum for all elements). E.g. `oo`. 

In case of it the allocation operation is terminated and only this value is 

returned. 

 

Assumption: 

- if A > B > C then A > C 

- if A == B then B can be removed 

 

References 

========== 

 

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

.. [2] http://en.wikipedia.org/wiki/Lattice_%28order%29 

 

See Also 

======== 

 

Min : find minimum values 

""" 

zero = S.Infinity 

identity = S.NegativeInfinity 

 

def fdiff( self, argindex ): 

from sympy import Heaviside 

n = len(self.args) 

if 0 < argindex and argindex <= n: 

argindex -= 1 

if n == 2: 

return Heaviside(self.args[argindex] - self.args[1 - argindex]) 

newargs = tuple([self.args[i] for i in range(n) if i != argindex]) 

return Heaviside(self.args[argindex] - Max(*newargs)) 

else: 

raise ArgumentIndexError(self, argindex) 

 

def _eval_rewrite_as_Heaviside(self, *args): 

from sympy import Heaviside 

return Add(*[j*Mul(*[Heaviside(j - i) for i in args if i!=j]) \ 

for j in args]) 

 

def _eval_is_positive(self): 

return fuzzy_or(a.is_positive for a in self.args) 

 

def _eval_is_nonnegative(self): 

return fuzzy_or(a.is_nonnegative for a in self.args) 

 

def _eval_is_negative(self): 

return fuzzy_and(a.is_negative for a in self.args) 

 

 

class Min(MinMaxBase, Application): 

""" 

Return, if possible, the minimum value of the list. 

It is named ``Min`` and not ``min`` to avoid conflicts 

with the built-in function ``min``. 

 

Examples 

======== 

 

>>> from sympy import Min, Symbol, oo 

>>> from sympy.abc import x, y 

>>> p = Symbol('p', positive=True) 

>>> n = Symbol('n', negative=True) 

 

>>> Min(x, -2) #doctest: +SKIP 

Min(x, -2) 

>>> Min(x, -2).subs(x, 3) 

-2 

>>> Min(p, -3) 

-3 

>>> Min(x, y) #doctest: +SKIP 

Min(x, y) 

>>> Min(n, 8, p, -7, p, oo) #doctest: +SKIP 

Min(n, -7) 

 

See Also 

======== 

 

Max : find maximum values 

""" 

zero = S.NegativeInfinity 

identity = S.Infinity 

 

def fdiff( self, argindex ): 

from sympy import Heaviside 

n = len(self.args) 

if 0 < argindex and argindex <= n: 

argindex -= 1 

if n == 2: 

return Heaviside( self.args[1-argindex] - self.args[argindex] ) 

newargs = tuple([ self.args[i] for i in range(n) if i != argindex]) 

return Heaviside( Min(*newargs) - self.args[argindex] ) 

else: 

raise ArgumentIndexError(self, argindex) 

 

def _eval_rewrite_as_Heaviside(self, *args): 

from sympy import Heaviside 

return Add(*[j*Mul(*[Heaviside(i-j) for i in args if i!=j]) \ 

for j in args]) 

 

def _eval_is_positive(self): 

return fuzzy_and(a.is_positive for a in self.args) 

 

def _eval_is_nonnegative(self): 

return fuzzy_and(a.is_nonnegative for a in self.args) 

 

def _eval_is_negative(self): 

return fuzzy_or(a.is_negative for a in self.args)