Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
exponentiation[x_,y_Integer]:=Which[y>0,Times@@ConstantArray[x,y],y==0,1,y<0,1/exponentiation[x,-y]]
|
||||
CirclePlus[x_,y_Integer]:=exponentiation[x,y]
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
exponentiation[1.23,3]
|
||||
exponentiation[4,0]
|
||||
exponentiation[2.5,-2]
|
||||
1.23\[CirclePlus]3
|
||||
4\[CirclePlus]0
|
||||
2.5\[CirclePlus]-2
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
1.86087
|
||||
1
|
||||
0.16
|
||||
1.86087
|
||||
1
|
||||
0.16
|
||||
Loading…
Add table
Add a link
Reference in a new issue