-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModifiedMethodLab.cpp
89 lines (80 loc) · 1.95 KB
/
ModifiedMethodLab.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
#include<bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define mp make_pair
#define ll long long
#define ld long double
#define all(a) a.begin(),a.end()
#define ios ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define endl '\n'
#define ull unsigned long long
#define iter set<int>::iterator
#define iter1 set<int>::iterator
#define y1 ajsdkflhasdkf
using namespace std;
const int N=1e6+7;
const int inf=1e9+1e9;
const int mod=1e9+7;
//const ld eps=1e-9;
ld eps,a,b;
ld F(ld x)
{
return x*x*x-4*x*x+x+6;
}
ld Derivative(ld x)
{
return 3*x*x-8*x+1;
}
ld DDerivative(ld x)
{
return 6*x-8;
}
int signum(ld x)
{
if(x>0)return 1;
else return -1;
}
void error()
{
cout<<"The conditions of the theorem are not satisfied"<<endl;
exit(0);
}
int main ()
{
cout<<fixed<<setprecision(5);
cout<<"Enter needed precision: ";
cin>>eps;
cout<<"Enter the approximate segment: ";
cin>>a>>b;
if (a>b)swap(a,b);
if (signum(Derivative(a))!=signum(Derivative(b)))error();
if (signum(DDerivative(a))!=signum((DDerivative(b))))error();
ld D = sqrtl(64-4*3);
ld firstRoot = (8-D)/6,secondRoot=(8+D)/6;
ld thirdRoot = (ld)8/6;
if (a<=firstRoot && firstRoot<=b)error();
if (a<=secondRoot && secondRoot<=b)error();
if (a<=thirdRoot && thirdRoot<=b)error();
ld x0 = (a+b)/2;
cout<<"The conditions of the theorem are satisfied"<<endl;
int cnt = 0 ;
ld xPrev = -inf ;
ld xNext = x0;
for (int i=0;;++i){
cout<<i+1<<" value of x is "<<xNext<<". "<<"Function value is "<<F(xNext)<<endl;
if (fabs(xNext-xPrev)<eps){
cout<<"Required accuracy achieved"<<endl;
break;
}
++cnt;
xPrev=xNext;
xNext = xPrev - F(xPrev)/Derivative(x0);
}
cout<<"Actual number of operations is "<<cnt<<endl;
cout<<"Result x value is "<<xNext<<". "<<"Function value is "<<F(xNext)<<endl;
}
//ûâëîäð
//10 1
//cbcccaacaa
//7 8