-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path04-polynomial-operator-overloading.py
More file actions
290 lines (199 loc) · 8.48 KB
/
04-polynomial-operator-overloading.py
File metadata and controls
290 lines (199 loc) · 8.48 KB
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
"""Question: Implement a class Polynomial that supports polynomial addition,
subtraction, and evaluation. Override the __add__, __sub__, and __call__ methods.
"""
# LEARNING CHALLENGE
#
# Before looking at any solution below, please try to solve this yourself first!
#
# Tips for success:
# - Read the question carefully
# - Think about what classes and methods you need
# - Start with a simple implementation
# - Test your code step by step
# - Don't worry if it's not perfect - learning is a process!
#
# Remember: The best way to learn programming is by doing, not by reading solutions!
#
# Take your time, experiment, and enjoy the learning process!
# Try to implement your solution here:
# (Write your code below this line)
# HINT SECTION (Only look if you're really stuck!)
#
# Think about:
# - How do you represent a polynomial? (list of coefficients)
# - What is polynomial addition? (add corresponding coefficients)
# - What is polynomial evaluation? (substitute x and calculate result)
# - What does the __call__ method do? (makes objects callable like functions)
#
# Remember: Start simple and build up complexity gradually!
# ===============================================================================
# STEP-BY-STEP SOLUTION
# ===============================================================================
#
# CLASSROOM-STYLE WALKTHROUGH
#
# Let's solve this problem step by step, just like in a programming class!
# Each step builds upon the previous one, so you can follow along and understand
# the complete thought process.
#
# ===============================================================================
# Step 1: Define the Polynomial class
# ===============================================================================
# Explanation:
# Let's start by creating our Polynomial class. We'll represent polynomials
# using a list of coefficients, where index represents the power of x.
class Polynomial:
pass # We'll add methods next
# What we accomplished in this step:
# - Created the basic Polynomial class structure
# Step 2: Add the constructor
# ===============================================================================
# Explanation:
# The __init__ method takes a list of coefficients. For example,
# [1, 2, 3] represents 1 + 2x + 3x^2.
class Polynomial:
def __init__(self, coefficients):
self.coefficients = coefficients
# What we accomplished in this step:
# - Added constructor to store polynomial coefficients
# Step 3: Add the __add__ method for polynomial addition
# ===============================================================================
# Explanation:
# Polynomial addition adds corresponding coefficients.
# (a + bx + cx^2) + (d + ex + fx^2) = (a+d) + (b+e)x + (c+f)x^2
class Polynomial:
def __init__(self, coefficients):
self.coefficients = coefficients
def __add__(self, other):
result = [a + b for a, b in zip(self.coefficients, other.coefficients)]
return Polynomial(result)
# What we accomplished in this step:
# - Added __add__ method for polynomial addition using zip()
# Step 4: Add the __sub__ method for polynomial subtraction
# ===============================================================================
# Explanation:
# Polynomial subtraction subtracts corresponding coefficients.
# (a + bx + cx^2) - (d + ex + fx^2) = (a-d) + (b-e)x + (c-f)x^2
class Polynomial:
def __init__(self, coefficients):
self.coefficients = coefficients
def __add__(self, other):
result = [a + b for a, b in zip(self.coefficients, other.coefficients)]
return Polynomial(result)
def __sub__(self, other):
result = [a - b for a, b in zip(self.coefficients, other.coefficients)]
return Polynomial(result)
# What we accomplished in this step:
# - Added __sub__ method for polynomial subtraction
# Step 5: Add the __call__ method for polynomial evaluation
# ===============================================================================
# Explanation:
# The __call__ method makes our polynomial callable like a function.
# To evaluate: substitute x and calculate sum of coef * x^power for each term.
class Polynomial:
def __init__(self, coefficients):
self.coefficients = coefficients
def __add__(self, other):
result = [a + b for a, b in zip(self.coefficients, other.coefficients)]
return Polynomial(result)
def __sub__(self, other):
result = [a - b for a, b in zip(self.coefficients, other.coefficients)]
return Polynomial(result)
def __call__(self, x):
return sum(coef * (x ** i) for i, coef in enumerate(self.coefficients))
# What we accomplished in this step:
# - Added __call__ method to evaluate polynomial at given x value
# Step 6: Add the __str__ method for nice printing
# ===============================================================================
# Explanation:
# The __str__ method formats the polynomial nicely for display.
# We'll show it in standard mathematical notation.
class Polynomial:
def __init__(self, coefficients):
self.coefficients = coefficients
def __add__(self, other):
result = [a + b for a, b in zip(self.coefficients, other.coefficients)]
return Polynomial(result)
def __sub__(self, other):
result = [a - b for a, b in zip(self.coefficients, other.coefficients)]
return Polynomial(result)
def __call__(self, x):
return sum(coef * (x ** i) for i, coef in enumerate(self.coefficients))
def __str__(self):
terms = []
for i, coef in enumerate(self.coefficients):
if coef != 0:
if i == 0:
terms.append(str(coef))
elif i == 1:
terms.append(f"{coef}x")
else:
terms.append(f"{coef}x^{i}")
return " + ".join(terms) if terms else "0"
# What we accomplished in this step:
# - Added __str__ method for readable polynomial display
# Step 7: Create instances and test our class
# ===============================================================================
# Explanation:
# Finally, let's create instances of our Polynomial class and test all operations
# to make sure everything works correctly.
class Polynomial:
def __init__(self, coefficients):
self.coefficients = coefficients
def __add__(self, other):
result = [a + b for a, b in zip(self.coefficients, other.coefficients)]
return Polynomial(result)
def __sub__(self, other):
result = [a - b for a, b in zip(self.coefficients, other.coefficients)]
return Polynomial(result)
def __call__(self, x):
return sum(coef * (x ** i) for i, coef in enumerate(self.coefficients))
def __str__(self):
terms = []
for i, coef in enumerate(self.coefficients):
if coef != 0:
if i == 0:
terms.append(str(coef))
elif i == 1:
terms.append(f"{coef}x")
else:
terms.append(f"{coef}x^{i}")
return " + ".join(terms) if terms else "0"
# Test our class:
p1 = Polynomial([1, 2, 3]) # Represents 1 + 2x + 3x^2
p2 = Polynomial([3, 2, 1]) # Represents 3 + 2x + 1x^2
print(f"Polynomial 1: {p1}")
print(f"Polynomial 2: {p2}")
# Test addition
result_add = p1 + p2
print(f"Addition: ({p1}) + ({p2}) = {result_add}")
# Test subtraction
result_sub = p1 - p2
print(f"Subtraction: ({p1}) - ({p2}) = {result_sub}")
# Test evaluation
x_value = 2
result_eval = p1(x_value)
print(f"Evaluation: p1({x_value}) = {result_eval}")
# Manual check: 1 + 2*2 + 3*2^2 = 1 + 4 + 12 = 17
# What we accomplished in this step:
# - Created and tested our complete Polynomial implementation
# - Demonstrated all mathematical operations working correctly
# ===============================================================================
# CONGRATULATIONS!
#
# You've successfully completed the step-by-step solution!
#
# Key concepts learned:
# - Polynomial mathematics and representation
# - Advanced operator overloading (__add__, __sub__, __call__)
# - Making objects callable with __call__ method
# - Mathematical computation with enumerate() and sum()
#
# Try it yourself:
# 1. Start with Step 1 and code along
# 2. Test each step before moving to the next
# 3. Understand WHY each step is necessary
# 4. Experiment with modifications (try adding polynomial multiplication!)
#
# Remember: The best way to learn is by doing!
# ===============================================================================