-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathClass 1 - Dealing with complex numbers.py
54 lines (45 loc) · 1.67 KB
/
Class 1 - Dealing with complex numbers.py
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
# Enter your code here. Read input from STDIN. Print output to STDOUT
# Author : Vineet
import math
class ComplexNo(object):
def __init__(self, real, imaginary):
self.real = real
self.imaginary = imaginary
def __add__(self, no):
real = self.real + no.real
imaginary = self.imaginary + no.imaginary
return ComplexNo(real, imaginary)
def __sub__(self, no):
real = self.real - no.real
imaginary = self.imaginary - no.imaginary
return ComplexNo(real, imaginary)
def __mul__(self, no):
real = self.real * no.real - self.imaginary * no.imaginary
imaginary = self.real * no.imaginary + self.imaginary * no.real
return ComplexNo(real, imaginary)
def __div__(self, no):
x = float(no.real ** 2 + no.imaginary ** 2)
y = self * ComplexNo(no.real, -no.imaginary)
real = y.real / x
imaginary = y.imaginary / x
return ComplexNo(real, imaginary)
def mod(self):
real = math.sqrt(self.real ** 2 + self.imaginary ** 2)
return ComplexNo(real, 0)
# can also use __repr__ in place of __str__
def __str__(self):
if self.imaginary == 0:
result = "%.2f" % (self.real)
elif self.real == 0:
result = "%.2fi" % (self.imaginary)
elif self.imaginary > 0:
result = "%.2f + %.2fi" % (self.real, self.imaginary)
else:
result = "%.2f - %.2fi" % (self.real, abs(self.imaginary))
return result
C = map(float, raw_input().split())
D = map(float, raw_input().split())
x = ComplexNo(*C)
y = ComplexNo(*D)
final = [x+y, x-y, x*y, x/y, x.mod(), y.mod()]
print '\n'.join(map(str, final))