-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUseChangeVariables.wls
executable file
·64 lines (35 loc) · 1.36 KB
/
UseChangeVariables.wls
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
#!/usr/bin/env wolframscript
(* ::Package:: *)
(* ::Title:: *)
(*Examples for how to use the ChangeVariables package*)
(* ::Text:: *)
(*Author: Marco Knipfer*)
(* ::Text:: *)
(*If you find any bug or change of variables that does not give the correct answers please message me on github https://github.com/BoGGoG/Mathematica-ChangeVariables or best: Create an issue on github =)*)
(* ::Input::Initialization:: *)
packagePath = FileNameJoin[{NotebookDirectory[], "ChangeVariables.wl"}];
Get[packagePath]
(* ::Input::Initialization:: *)
?ChangeVariables
(* ::Section:: *)
(*Examples*)
(* ::Text:: *)
(*The syntax is ChangeVariables[expressions, fromVar, toVar, toVarDef].*)
(**)
(*If you want to change from x to u=x^2, then you write:*)
(* ::Input::Initialization:: *)
ChangeVariables[x f[x], x, u, (#^2&)]
(* ::Text:: *)
(*Note the two solutions, because x = +- Sqrt[u].*)
(* ::Input::Initialization:: *)
ChangeVariables[Cos[x] f[x,y], x, u, (Cos[#] &)]
(* ::Text:: *)
(*(the if condition comes from inverting the cos. This is a bug I need to fix.)*)
(* ::Text:: *)
(*Derivatives also work: x -> u = Sqrt[x]*)
(* ::Input::Initialization:: *)
ChangeVariables[x D[f[a,b,x,y,z], x], x, u, (#^(1/2)&)]
(* ::Input::Initialization:: *)
ChangeVariables[D[f[x],x], x, r, (1/#&)]
(* ::Input::Initialization:: *)
ChangeVariables[Cos[x] D[f[x,y], {x,2}], x, u, (Cos[#] &)]