-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcomplex_exponentiation_in_real_numbers.pl
executable file
·73 lines (55 loc) · 1.26 KB
/
complex_exponentiation_in_real_numbers.pl
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
#!/usr/bin/perl
# Daniel "Trizen" Șuteu
# Date: 13 August 2017
# https://github.com/trizen
# Identity for complex exponentiation in real numbers, based on the identity:
#
# exp(x*i) = cos(x) + sin(x)*i
#
use 5.010;
use strict;
use warnings;
#
## Real base and complex exponent
#
sub complex_power {
my ($x, $r, $i) = @_;
(
$x**$r * cos(log($x) * $i),
$x**$r * sin(log($x) * $i),
)
}
#
## Complex base and complex exponent
#
sub complex_power2 {
my ($x, $y, $r, $i) = @_;
($x, $y) = (log($x*$x + $y*$y) / 2, atan2($y, $x)); # log($x + $y*i)
($x, $y) = ($x*$r - $y*$i, $x*$i + $y*$r); # ($x + $y*i) * ($r + $i*i)
(exp($x) * cos($y), exp($x) * sin($y)); # exp($x + $y*i)
}
#
## Example for 12^(3+4i)
#
{
# base
my $x = 12;
# exponent
my $r = 3;
my $i = 4;
my ($real, $imag) = complex_power($x, $r, $i);
say "$x^($r + $i*i) = $real + $imag*i"; #=> -1503.99463080925 + -850.872581822307*i
}
#
## Example for (5+2i)^(3+7i)
#
{
# base
my $x = 5;
my $y = 2;
# exponent
my $r = 3;
my $i = 7;
my ($real, $imag) = complex_power2($x, $y, $r, $i);
say "($x + $y*i)^($r + $i*i) = $real + $imag*i"; #=> 10.1847486230437 + 3.84152292303168*i
}