-
Notifications
You must be signed in to change notification settings - Fork 0
/
Polynomial.cpp
510 lines (474 loc) · 14.6 KB
/
Polynomial.cpp
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
#include <fstream>
#include "Polynomial.h"
#define EPS 0.000000001
Polynomial::Polynomial() { deg = 0; }
Polynomial::Polynomial(const Polynomial& that) { deg = that.deg; p = that.p; }
Polynomial::Polynomial(const Vector& pol) { deg = pol.getSize() - 1; p = pol; }
Polynomial::Polynomial(const size_t& d) { deg = d; p = Vector(deg + 1, 0); }
Polynomial::~Polynomial() {}
Polynomial& Polynomial::operator = (const Polynomial& that) { deg = that.deg; p = that.p; return *this; }
size_t Polynomial::getSize() const { return deg; }
double Polynomial::get(const size_t& d) const { return p.get(d); }
double& Polynomial::operator [] (const size_t& r) { return p[r]; }
/*
* Функция, вычисляющая степень полинома, получившегося
* в результате арифметических операций
*/
size_t Polynomial::calculateDeg() const
{
size_t result = 0;
for (size_t i = deg; i > 0; i--)
if (this->get(i))
{
result = i;
break;
}
return result;
}
/*
* Функция, удаляющая нулевые высшие степени из полинома
*/
void Polynomial::shrink()
{
size_t endDeg = this->calculateDeg();
if (deg != endDeg)
{
Polynomial result(endDeg);
for (size_t i = 0; i <= endDeg; i++)
result[i] = p.get(i);
*this = result;
}
}
Polynomial Polynomial::operator + (const Polynomial& that) const
{
size_t endDeg = 0;
if (deg <= that.deg)
endDeg = that.deg;
else
endDeg = deg;
Polynomial result(endDeg);
for (size_t i = 0; i <= this->getSize(); i++)
result[i] += this->get(i);
for (size_t i = 0; i <= that.getSize(); i++)
result[i] += that.get(i);
result.shrink();
return result;
}
Polynomial& Polynomial::operator += (const Polynomial& that)
{
size_t endDeg = 0;
if (deg <= that.deg)
endDeg = that.deg;
else
endDeg = deg;
Polynomial result(endDeg);
for (size_t i = 0; i <= this->getSize(); i++)
result[i] += this->get(i);
for (size_t i = 0; i <= that.getSize(); i++)
result[i] += that.get(i);
result.shrink();
*this = result;
return *this;
}
Polynomial Polynomial::operator - (const Polynomial& that) const
{
size_t endDeg = 0;
if (deg <= that.deg)
endDeg = that.deg;
else
endDeg = deg;
Polynomial result(endDeg);
for (size_t i = 0; i <= this->getSize(); i++)
result[i] += this->get(i);
for (size_t i = 0; i <= that.getSize(); i++)
result[i] -= that.get(i);
result.shrink();
return result;
}
Polynomial& Polynomial::operator -= (const Polynomial& that)
{
size_t endDeg = 0;
if (deg <= that.deg)
endDeg = that.deg;
else
endDeg = deg;
Polynomial result(endDeg);
for (size_t i = 0; i <= this->getSize(); i++)
result[i] += this->get(i);
for (size_t i = 0; i <= that.getSize(); i++)
result[i] -= that.get(i);
result.shrink();
*this = result;
return *this;
}
Polynomial Polynomial::operator * (const Polynomial& that) const
{
Polynomial result(that.getSize() + this->getSize());
for (size_t i = 0; i <= this->getSize(); i++)
for (size_t j = 0; j <= that.getSize(); j++)
result[i + j] += this->get(i) * that.get(j);
result.shrink();
return result;
}
Polynomial& Polynomial::operator *= (const Polynomial& that)
{
Polynomial result(that.getSize() + this->getSize());
for (size_t i = 0; i <= this->getSize(); i++)
for (size_t j = 0; j <= that.getSize(); j++)
result[i + j] += this->get(i) * that.get(j);
result.shrink();
*this = result;
return *this;
}
Polynomial Polynomial::df() const
{
Polynomial result(this->getSize() - 1);
for (size_t i = 1; i <= this->getSize(); i++)
result[i - 1] = i * this->get(i);
result.shrink();
return result;
}
Polynomial Polynomial::Df() const
{
Polynomial result(this->getSize() + 1);
for (size_t i = 1; i <= this->getSize() + 1; i++)
result[i] = this->get(i - 1) / i;
result.shrink();
return result;
}
double Polynomial::operator () (const double& x) const
{
double result = this->get(0);
for (size_t i = 1; i <= this->getSize(); i++)
result += this->get(i) * pow(x, i);
return result;
}
Polynomial operator * (const double& a, const Polynomial& pol)
{
Polynomial result = pol;
for (size_t i = 0; i <= result.getSize(); i++)
result[i] *= a;
result.shrink();
return result;
}
Polynomial& Polynomial::operator *= (const double& a)
{
Polynomial result(this->getSize());
for (size_t i = 0; i <= result.getSize(); i++)
result[i] = this->get(i) * a;
result.shrink();
*this = result;
return *this;
}
Polynomial Polynomial::operator / (const double& a)
{
Polynomial result = *this;
for (size_t i = 0; i <= this->getSize(); i++)
result[i] /= a;
result.shrink();
return result;
}
Polynomial& Polynomial::operator /= (const double& a)
{
Polynomial result(this->getSize());
for (size_t i = 0; i <= result.getSize(); i++)
result[i] = this->get(i) / a;
result.shrink();
*this = result;
return *this;
}
istream& operator >> (istream& in, Polynomial& pol)
{
for (size_t i = 0; i <= pol.getSize(); i++)
in >> pol[i];
return in;
}
ostream& operator << (ostream& out, const Polynomial& pol)
{
bool check = false; // определить, напечатано ли первое ненулевое слагаемое
for (int i = pol.getSize(); i >= 0; i--)
{
if (pol.get(i))
{
if (!check)
{
out << pol.get(i);
check = true;
}
else
{
if (pol.get(i) < 0)
out << " - ";
else
out << " + ";
out << abs(pol.get(i));
}
if (i)
out << "x^" << i;
}
}
out << endl;
return out;
}
Polynomial int_L(const Vector& x, const Vector& y)
{
Polynomial result(x.getSize() - 1);
for (size_t i = 0; i <= result.getSize(); i++)
{
// построение полинома w(x)
Polynomial w(Vector(1, 1));
double wxk = 1;
for (size_t j = 0; j <= result.getSize(); j++)
if (i != j)
{
w *= Polynomial({ -1 * x.get(j), 1 });
wxk *= x.get(i) - x.get(j);
}
result += y.get(i) * (w / wxk);
}
return result;
}
Polynomial int_N(const Vector& x, const Vector& y)
{
Polynomial result(x.getSize() - 1);
/*
* Составляем вектор разделённых разностей,
* необходимых для вычисления полинома
*/
Vector calculations(y.getSize() + 1, 0);
calculations[0] = y.get(0);
for (size_t i = 1; i < calculations.getSize(); i++)
for (size_t k = 0; k <= i; k++)
{
double denominator = 1;
for (size_t j = 0; j <= i; j++)
if (k != j)
denominator *= x.get(k) - x.get(j);
calculations[i] += y.get(k) / denominator;
}
/*
* Составление самого полинома
*/
for (size_t i = 0; i <= x.getSize() - 1; i++)
{
Polynomial w(Vector(1, 1));
for (size_t j = 0; j < i; j++)
w *= Polynomial({ -1 * x.get(j), 1 });
result += calculations.get(i) * w;
}
return result;
}
Vector Cheb(const size_t& n) // построение узлов Чебышёва для задания 1.3
{
Vector result(n);
for (size_t i = 1; i <= result.getSize(); i++)
result[i - 1] = cos((((2.0 * i) - 1.0) / (2.0 * n)) * acos(-1.0));
return result;
}
double fu1(const double& x)
{
double result = 0;
result = 1 / (x * x + 1);
return result;
}
double fu2(const double& x)
{
double result = 0;
result = (1 + x * x) * (exp(x) - exp(-x)) - 1;
return result;
}
double dfu2(const double& x)
{
double result = 0;
result = exp(x) + exp(-x) + 2 * x * exp(x) + x * x * exp(x) - 2 * x * exp(-x) + x * x * exp(-x);
return result;
}
// функция создания равномерной сетки на n отрезков
Vector steady_grid(const size_t& n, const double& a, const double& b)
{
Vector result(n + 1);
result[0] = a; result[n] = b;
for (size_t i = 1; i < n; i++)
result[i] = result[i - 1] + (b - a) / n;
return result;
}
// формула центральных прямоугольников
double mid_rect(const size_t& n, const double& a, const double& b, double (*function)(const double&))
{
double result = 0;
// создадим сетку размера n + 1, чтобы на ней было n отрезков разбиения
Vector x = steady_grid(n, a, b);
// формула центральных прямоугольников собственной персоной
for (size_t i = 0; i < n; i++)
result += function((x[i] + x[i + 1]) / 2) * (x[i + 1] - x[i]);
return result;
}
// формула трапеций
double trapecia(const size_t& n, const double& a, const double& b, double (*function)(const double&))
{
double result = 0;
// создадим сетку размера n + 1, чтобы на ней было n отрезков разбиения
Vector x = steady_grid(n, a, b);
// формула трапеций...
for (size_t i = 0; i < n; i++)
result += ((function(x[i]) + function(x[i + 1])) / 2) * (x[i + 1] - x[i]);
return result;
}
// формула Симпсона
double Simpson(const size_t& n, const double& a, const double& b, double (*function)(const double&))
{
double result = 0;
// создадим сетку размера n + 1, чтобы на ней было n отрезков разбиения
Vector x = steady_grid(n, a, b);
// формула Симпсона...
for (size_t i = 0; i < n; i++)
result += (((function(x[i]) + 4 * function((x[i] + x[i + 1]) / 2) + function(x[i + 1])) / 6) * (x[i + 1] - x[i]));
return result;
}
Polynomial Legendre(const size_t& n)
{
Polynomial result(Vector(1, 1));
for (size_t i = 0; i < n; i++)
result *= Polynomial({ -1, 0, 1 });
for (size_t i = 0; i < n; i++)
result = result.df();
// вычисление факториала
long int factorial = 1;
for (long int i = 1; i <= n; i++)
factorial *= i;
// получение итогового многочлена домножением на 1 / (2^n * n!)
result *= 1 / (pow(2, n) * factorial);
return result;
}
// метод дихотомии решения неоинейного уравнения f(x) = 0
pair<size_t, double> dichotomy(const double& eps, const double& a, const double& b, double (*function)(const double&))
{
double result = a, presult = b, ac = a, bc = b;
size_t counter = 0; // счетчик итераций
do // цикл должен сработать хотя бы один раз
{
++counter;
presult = result; // для выяснения достижения указанной точности
result = (ac + bc) / 2;
if (!function(result))
break;
else if (function(ac) * function(result) < 0)
bc = result;
else if (function(result) * function(bc) < 0)
ac = result;
} while (abs(result - presult) >= eps);
pair<size_t, double> ans{counter, result}; // возвращаем пару - количество итераций и найденный корень
return ans;
}
// метод Ньютона решения нелинейного уравнения f(x) = 0
pair<size_t, double> newt(const double& eps, const double& a, const double& b, double (*function)(const double&), double (*dfunction)(const double&))
{
double result = (a + b) / 2, presult = 0;
size_t counter = 0;
if (!function(result))
goto ret;
do
{
++counter;
presult = result;
result = presult - (function(presult) / dfunction(presult));
} while (abs(result - presult) >= eps);
ret:
pair<size_t, double> ans{ counter, result };
return ans;
}
pair<size_t, double> newt(const double& eps, double (*function)(const double&), double (*dfunction)(const double&), const double& x0)
{
double result = x0, presult = 0;
size_t counter = 0;
if (!function(result))
goto ret;
do
{
++counter;
presult = result;
result = presult - (function(presult) / dfunction(presult));
} while (abs(result - presult) >= eps);
ret:
pair<size_t, double> ans{ counter, result };
return ans;
}
pair<size_t, double> newt(const double& eps, Polynomial& function, Polynomial& dfunction, const double& x0)
{
fstream fout("output.txt", ios::app);
double result = x0, presult = 0;
size_t counter = 0;
if (!function(result))
goto ret;
do
{
++counter;
presult = result;
result = presult - (function(presult) / dfunction(presult));
fout << result << endl;
} while (abs(result - presult) >= eps);
ret:
pair<size_t, double> ans{ counter, result };
return ans;
}
pair<size_t, double> newt(Polynomial& function, Polynomial& dfunction, const double& x0)
{
fstream fout("output.txt", ios::app);
double result = x0, presult = 0;
size_t counter = 0;
if (!function(result))
goto ret;
do
{
++counter;
presult = result;
result = presult - (function(presult) / dfunction(presult));
fout << result << endl;
} while (counter != 31);
ret:
pair<size_t, double> ans{ counter, result };
return ans;
}
// квадратурная формула Гаусса
void Gaussian(const double& eps, const size_t& n, const double& a, const double& b, double (*function)(const double&))
{
fstream fout("output.txt", ios::app);
fout << fixed << setprecision(8);
double result = 0;
Polynomial result_pol;
// найдём узлы - корни многочлена Лежандра n-й степени
Vector x(n, 0), c(n, 0);
Polynomial L = Legendre(n), dL = L.df();
for (size_t i = 0; i < n; i++)
{
// начальное приближение для i-го корня
x[i] = cos((acos(-1) * (4 * (i + 1) - 1)) / (4 * n + 2));
// поиск самого корня
x[i] = newt(eps, L, dL, x[i]).second;
}
// перерасчёт узлов с отрезка [-1, 1] на нужный отрезок [a, b]
if (a != -1 || b != 1)
for (size_t i = 0; i < n; i++)
x[i] = ((a + b) / 2) + (x[i] * ((b - a) / 2));
// подсчёт значений функции в узлах
Vector y(n, 0);
for (size_t i = 0; i < n; i++)
y[i] = function(x[i]);
// подсчёт весов квадратурной формулы
for (size_t i = 0; i < n; i++) {
Polynomial weight(Vector(1, 1));
double denominator = 1;
for (size_t j = 0; j < n; j++)
if (i != j) {
weight *= Polynomial(Vector{ -1 * x[j], 1 });
denominator *= x[i] - x[j];
}
weight /= denominator;
c[i] = (weight.Df())(b) - (weight.Df())(a);
}
// сама квадратурная формула
for (size_t i = 0; i < n; i++)
result += c[i] * function(x[i]);
fout << "Узлы:\n" << x << "Значения функции в узлах:\n" << y << "Веса квадратурной формулы:\n" << c << "Результат = " << result << endl << endl;
fout.close();
}