Project 2

454 days ago by vsbhatia10

#ignore - Number 2 completed on separate page. SIZEWEIGHT = [(270,487.7), (170,140), (70,250), (130,60), (420,600), (130,6.4), (20.8,5.6), (5,2.5), (205,275), (83,3), (128,74), (180,120), (175,150), (165, 35), (195,44), (98,62), (240,82), (300,500), (18.4,4.8), (46,22), (55,23), (43,1.8), (48,21), (87,65), (84,60), (114,35), (32,10.1), (40,22), (220,230), (115,76), (65,25), (13.8,1.4)] SIZEWEIGHT_plot=list_plot(SIZEWEIGHT,xmin=0,ymin=0,marker='D',color='red',thickness=2) show(SIZEWEIGHT_plot) a=var('a') b=var('b') x=var('x') model(x)=a*x+b print(find_fit(SIZEWEIGHT,model)) logSIZEWEIGHT = [(log(270), log(487.7)), (log(170),log(140)), (log(70),log(250)), (log(130),log(60)), (log(420),log(600)), (log(130),log(6.4)), (log(20.8),log(5.6)), (log(5),log(2.5)), (log(205),log(275)), (log(83),log(3)), (log(178),log(74)), (log(180),log(120)), (log(175),log(150)), (log(165),log(35)), (log(195),log(44)), (log(98),log(62)), (log(240),log(82)), (log(300),log(500)), (log(18.4),log(4.8)), (log(46),log(22)), (log(55),log(23)), (log(43),log(1.8)), (log(48),log(21)), (log(87),log(65)), (log(84),log(60)), (log(114),log(35)), (log(32),log(10.1)), (log(40),log(22)), (log(220),log(230)), (log(115),log(76)), (log(65),log(25)), (log(13.8),log(1.4))] SIZEWEIGHTlog_plot=list_plot(logSIZEWEIGHT,xmin=0,ymin=0,marker='D',color='red',thickness=2) a=var('a') b=var('b') x=var('x') logreg=plot(1.3675633219929886*x-2.4672658543193333,(x,0,6)) compplot=logreg+SIZEWEIGHTlog_plot show(compplot) model(x)=a*x+b print(find_fit(logSIZEWEIGHT,model)) # The scatter plot shows that, while there seems to be a correlation between the size and weight of various mammals, # there is by no means a perfectly linear relationship present. 
       
verbose 0 (138: primitive.py, options) WARNING: Ignoring option
'marker'=D
verbose 0 (138: primitive.py, options) WARNING: Ignoring option
'thickness'=2
verbose 0 (138: primitive.py, options) 
The allowed options for Point set defined by 32 point(s) are:
    alpha          How transparent the point is.                        

    faceted        If True color the edge of the point.                 

    hue            The color given as a hue.                            

    legend_label   The label for this item in the legend.               

    rgbcolor       The color as an RGB tuple.                           

    size           How big the point is (i.e., area in points^2=(1/72
inch)^2).
    zorder         The layer level in which to draw                     



[a == 1.3629129388504175, b == -59.719147356104074]
verbose 0 (138: primitive.py, options) WARNING: Ignoring option
'marker'=D
verbose 0 (138: primitive.py, options) WARNING: Ignoring option
'thickness'=2
verbose 0 (138: primitive.py, options) 
The allowed options for Point set defined by 32 point(s) are:
    alpha          How transparent the point is.                        

    faceted        If True color the edge of the point.                 

    hue            The color given as a hue.                            

    legend_label   The label for this item in the legend.               

    rgbcolor       The color as an RGB tuple.                           

    size           How big the point is (i.e., area in points^2=(1/72
inch)^2).
    zorder         The layer level in which to draw                     



[a == 1.3675633219929886, b == -2.4672658543193333]
verbose 0 (138: primitive.py, options) WARNING: Ignoring option 'marker'=D
verbose 0 (138: primitive.py, options) WARNING: Ignoring option 'thickness'=2
verbose 0 (138: primitive.py, options) 
The allowed options for Point set defined by 32 point(s) are:
    alpha          How transparent the point is.                               
    faceted        If True color the edge of the point.                        
    hue            The color given as a hue.                                   
    legend_label   The label for this item in the legend.                      
    rgbcolor       The color as an RGB tuple.                                  
    size           How big the point is (i.e., area in points^2=(1/72 inch)^2).
    zorder         The layer level in which to draw                            


[a == 1.3629129388504175, b == -59.719147356104074]
verbose 0 (138: primitive.py, options) WARNING: Ignoring option 'marker'=D
verbose 0 (138: primitive.py, options) WARNING: Ignoring option 'thickness'=2
verbose 0 (138: primitive.py, options) 
The allowed options for Point set defined by 32 point(s) are:
    alpha          How transparent the point is.                               
    faceted        If True color the edge of the point.                        
    hue            The color given as a hue.                                   
    legend_label   The label for this item in the legend.                      
    rgbcolor       The color as an RGB tuple.                                  
    size           How big the point is (i.e., area in points^2=(1/72 inch)^2).
    zorder         The layer level in which to draw                            


[a == 1.3675633219929886, b == -2.4672658543193333]
x=var('x') a=var('a') b=var('b') c=var('c') a=plot(2*x*e^(-(x/1000)^2),(x,-2000,2000)) b=plot(x,(x,-2000,2000)) c=a+b show(c) print(solve(x==2*x*e^(-(x/1000)^2),x)) Stability=vector(RDF,100) Stability[0]=5 for i in range(99): Stability[i+1]=2*Stability[i]*e^(-(Stability[i]/1000)^2) points = [[x,Stability[x]] for x in range(100)] pplot=scatter_plot(points) show(pplot) for i in range(99): print(i,Stability[i]) # The two non-negative equilibrium points are at 0 and 1000 times the square root of the natural log of 2. # The equilibrium point at 0 is unstable and the point at approximately 832.55461 is stable as shown in the second # graph. # In order to find the equilibrium points, we set P(n+1) equal to y and we set P(n) equal to x. After setting r equal # to 2, we solved for x. We then took the derivative of the original equation and found the slope at the equilibrium # points we found by solving for P in the original calculation to determine stability.If the absolute value of the # derivative was less than one at P, we concluded that P was stable.If not, we would concluded that P was unstable # stability and search for oscillation. 
       

[
x == -1000*sqrt(log(2)),
x == 1000*sqrt(log(2)),
x == 0
]

(0, 5.0)
(1, 9.99975000312)
(2, 19.9975002562)
(3, 39.9790097087)
(4, 79.8303228956)
(5, 158.646382903)
(6, 309.406586008)
(7, 562.319936191)
(8, 819.762315681)
(9, 837.273990897)
(10, 830.70173745)
(11, 833.265746209)
(12, 832.27922468)
(13, 832.66088949)
(14, 832.513541264)
(15, 832.57047396)
(16, 832.548483109)
(17, 832.556978338)
(18, 832.553696722)
(19, 832.554964398)
(20, 832.554474703)
(21, 832.554663869)
(22, 832.554590795)
(23, 832.554619024)
(24, 832.554608119)
(25, 832.554612331)
(26, 832.554610704)
(27, 832.554611333)
(28, 832.55461109)
(29, 832.554611184)
(30, 832.554611148)
(31, 832.554611162)
(32, 832.554611156)
(33, 832.554611158)
(34, 832.554611157)
(35, 832.554611158)
(36, 832.554611158)
(37, 832.554611158)
(38, 832.554611158)
(39, 832.554611158)
(40, 832.554611158)
(41, 832.554611158)
(42, 832.554611158)
(43, 832.554611158)
(44, 832.554611158)
(45, 832.554611158)
(46, 832.554611158)
(47, 832.554611158)
(48, 832.554611158)
(49, 832.554611158)
(50, 832.554611158)
(51, 832.554611158)
(52, 832.554611158)
(53, 832.554611158)
(54, 832.554611158)
(55, 832.554611158)
(56, 832.554611158)
(57, 832.554611158)
(58, 832.554611158)
(59, 832.554611158)
(60, 832.554611158)
(61, 832.554611158)
(62, 832.554611158)
(63, 832.554611158)
(64, 832.554611158)
(65, 832.554611158)
(66, 832.554611158)
(67, 832.554611158)
(68, 832.554611158)
(69, 832.554611158)
(70, 832.554611158)
(71, 832.554611158)
(72, 832.554611158)
(73, 832.554611158)
(74, 832.554611158)
(75, 832.554611158)
(76, 832.554611158)
(77, 832.554611158)
(78, 832.554611158)
(79, 832.554611158)
(80, 832.554611158)
(81, 832.554611158)
(82, 832.554611158)
(83, 832.554611158)
(84, 832.554611158)
(85, 832.554611158)
(86, 832.554611158)
(87, 832.554611158)
(88, 832.554611158)
(89, 832.554611158)
(90, 832.554611158)
(91, 832.554611158)
(92, 832.554611158)
(93, 832.554611158)
(94, 832.554611158)
(95, 832.554611158)
(96, 832.554611158)
(97, 832.554611158)
(98, 832.554611158)

[
x == -1000*sqrt(log(2)),
x == 1000*sqrt(log(2)),
x == 0
]

(0, 5.0)
(1, 9.99975000312)
(2, 19.9975002562)
(3, 39.9790097087)
(4, 79.8303228956)
(5, 158.646382903)
(6, 309.406586008)
(7, 562.319936191)
(8, 819.762315681)
(9, 837.273990897)
(10, 830.70173745)
(11, 833.265746209)
(12, 832.27922468)
(13, 832.66088949)
(14, 832.513541264)
(15, 832.57047396)
(16, 832.548483109)
(17, 832.556978338)
(18, 832.553696722)
(19, 832.554964398)
(20, 832.554474703)
(21, 832.554663869)
(22, 832.554590795)
(23, 832.554619024)
(24, 832.554608119)
(25, 832.554612331)
(26, 832.554610704)
(27, 832.554611333)
(28, 832.55461109)
(29, 832.554611184)
(30, 832.554611148)
(31, 832.554611162)
(32, 832.554611156)
(33, 832.554611158)
(34, 832.554611157)
(35, 832.554611158)
(36, 832.554611158)
(37, 832.554611158)
(38, 832.554611158)
(39, 832.554611158)
(40, 832.554611158)
(41, 832.554611158)
(42, 832.554611158)
(43, 832.554611158)
(44, 832.554611158)
(45, 832.554611158)
(46, 832.554611158)
(47, 832.554611158)
(48, 832.554611158)
(49, 832.554611158)
(50, 832.554611158)
(51, 832.554611158)
(52, 832.554611158)
(53, 832.554611158)
(54, 832.554611158)
(55, 832.554611158)
(56, 832.554611158)
(57, 832.554611158)
(58, 832.554611158)
(59, 832.554611158)
(60, 832.554611158)
(61, 832.554611158)
(62, 832.554611158)
(63, 832.554611158)
(64, 832.554611158)
(65, 832.554611158)
(66, 832.554611158)
(67, 832.554611158)
(68, 832.554611158)
(69, 832.554611158)
(70, 832.554611158)
(71, 832.554611158)
(72, 832.554611158)
(73, 832.554611158)
(74, 832.554611158)
(75, 832.554611158)
(76, 832.554611158)
(77, 832.554611158)
(78, 832.554611158)
(79, 832.554611158)
(80, 832.554611158)
(81, 832.554611158)
(82, 832.554611158)
(83, 832.554611158)
(84, 832.554611158)
(85, 832.554611158)
(86, 832.554611158)
(87, 832.554611158)
(88, 832.554611158)
(89, 832.554611158)
(90, 832.554611158)
(91, 832.554611158)
(92, 832.554611158)
(93, 832.554611158)
(94, 832.554611158)
(95, 832.554611158)
(96, 832.554611158)
(97, 832.554611158)
(98, 832.554611158)
x=var('x') a=var('a') b=var('b') c=var('c') a=plot(2*x*e^(-(x/1000)^2),(x,-2000,2000)) b=plot(x,(x,-2000,2000)) c=a+b show(c) print(solve(x==2*x*e^(-(x/1000)^2),x)) Stability=vector(RDF,100) Stability1=vector(RDF,100) Stability2=vector(RDF,100) Stability3=vector(RDF,100) Stability[0]=5 Stability1[0]=536 Stability2[0]=1000 Stability3[0]=2000 for i in range(99): Stability[i+1]=3*Stability[i]*e^(-(Stability[i]/1000)^2) Stability1[i+1]=3*Stability1[i]*e^(-(Stability1[i]/1000)^2) Stability2[i+1]=3*Stability2[i]*e^(-(Stability2[i]/1000)^2) Stability3[i+1]=3*Stability3[i]*e^(-(Stability3[i]/1000)^2) points = [[x,Stability[x]] for x in range(100)] points1 = [[x,Stability1[x]] for x in range(100)] points2 = [[x,Stability2[x]] for x in range (100)] points3 = [[x,Stability3[x]] for x in range (100)] pplot=scatter_plot(points) pplot1=scatter_plot(points1) pplot2=scatter_plot(points2) pplot3=scatter_plot(points3) show(pplot) show(pplot1) show(pplot2) show(pplot3) for i in range(99): print(i,Stability[i],Stability1[i],Stability2[i],Stability3[i]) # Both equilibrium points are clearly unstable. However, there is some oscillation between the values of 741.151903771 # and 1283.71264271. This means that the equilibrium point essentially only exists in theory and suggesting an # alternative form of stability. # In order to find the equilibrium points, we set P(n+1) equal to y and we set P(n) equal to x. After setting r equal # # to 3, we solved for x. We then took the derivative of the original equation and found the slope at the equilibrium # points we found by solving for P in the original calculation to determine stability.If the absolute value of the # derivative was less than one at P, we concluded that P was stable.If not, we would concluded that P was unstable # stability and search for oscillation. 
       

[
x == -1000*sqrt(log(2)),
x == 1000*sqrt(log(2)),
x == 0
]




(0, 5.0, 536.0, 1000.0, 2000.0)
(1, 14.9996250047, 1206.46569327, 1103.63832351, 109.893833332)
(2, 44.9887519122, 844.296105846, 979.421711502, 325.7239952)
(3, 134.693361942, 1241.75333995, 1125.86589935, 878.808093242)
(4, 396.815242728, 797.068462283, 950.840159549, 1217.89005067)
(5, 1017.00848646, 1266.78152451, 1155.00650144, 829.009228326)
(6, 1084.55686995, 763.651541803, 912.723988508, 1250.86085213)
(7, 1003.52637638, 1278.65011065, 1190.32389729, 784.892442321)
(8, 1099.73283592, 747.867918307, 865.858967209, 1271.69105727)
(9, 984.390365327, 1282.45597377, 1227.36218132, 757.116378753)
(10, 1120.58979508, 742.818111568, 816.328577148, 1280.36958831)
(11, 957.6680629, 1283.42139252, 1257.69616369, 745.585683665)
(12, 1148.23975195, 741.538121582, 775.764917795, 1282.90759456)
(13, 921.629370949, 1283.64642271, 1274.93517643, 742.219284786)
(14, 1182.46290539, 741.239825994, 752.802718045, 1283.52766385)
(15, 876.335068657, 1283.69771718, 1281.39365198, 741.397247645)
(16, 1219.74567439, 741.171834153, 744.227042225, 1283.67070129)
(17, 826.525219873, 1283.70934818, 1283.16447348, 741.207644106)
(18, 1252.25196378, 741.156417184, 741.878715433, 1283.70322518)
(19, 783.033976923, 1283.71198234, 1283.58732392, 741.164533261)
(20, 1272.38219681, 741.152925596, 741.31816404, 1283.71059577)
(21, 756.197058692, 1283.71257876, 1283.68428832, 741.154763508)
(22, 1280.59526418, 741.152135046, 741.189634253, 1283.71226482)
(23, 745.28623823, 1283.71271379, 1283.70630539, 741.152551168)
(24, 1282.96497988, 741.151956064, 741.160450414, 1283.71264271)
(25, 742.143201002, 1283.71274436, 1283.71129333, 741.152050274)
(26, 1283.54104105, 741.151915542, 741.153838881, 1283.71272827)
(27, 741.37951509, 1283.71275128, 1283.71242276, 741.151936872)
(28, 1283.6737505, 741.151906369, 741.15234182, 1283.71274764)
(29, 741.203602314, 1283.71275285, 1283.71267847, 741.151911197)
(30, 1283.70391658, 741.151904292, 741.152002877, 1283.71275202)
(31, 741.1636168, 1283.7127532, 1283.71273636, 741.151905385)
(32, 1283.71075235, 741.151903821, 741.151926141, 1283.71275302)
(33, 741.154555951, 1283.71275328, 1283.71274947, 741.151904069)
(34, 1283.71230028, 741.151903715, 741.151908768, 1283.71275324)
(35, 741.152504174, 1283.7127533, 1283.71275244, 741.151903771)
(36, 1283.71265074, 741.151903691, 741.151904835, 1283.71275329)
(37, 741.152039635, 1283.71275331, 1283.71275311, 741.151903703)
(38, 1283.71273009, 741.151903685, 741.151903944, 1283.7127533)
(39, 741.151934463, 1283.71275331, 1283.71275326, 741.151903688)
(40, 1283.71274805, 741.151903684, 741.151903743, 1283.71275331)
(41, 741.151910652, 1283.71275331, 1283.7127533, 741.151903685)
(42, 1283.71275212, 741.151903684, 741.151903697, 1283.71275331)
(43, 741.151905261, 1283.71275331, 1283.7127533, 741.151903684)
(44, 1283.71275304, 741.151903684, 741.151903687, 1283.71275331)
(45, 741.151904041, 1283.71275331, 1283.71275331, 741.151903684)
(46, 1283.71275325, 741.151903684, 741.151903684, 1283.71275331)
(47, 741.151903765, 1283.71275331, 1283.71275331, 741.151903684)
(48, 1283.71275329, 741.151903684, 741.151903684, 1283.71275331)
(49, 741.151903702, 1283.71275331, 1283.71275331, 741.151903684)
(50, 1283.7127533, 741.151903684, 741.151903684, 1283.71275331)
(51, 741.151903688, 1283.71275331, 1283.71275331, 741.151903684)
(52, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(53, 741.151903685, 1283.71275331, 1283.71275331, 741.151903684)
(54, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(55, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(56, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(57, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(58, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(59, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(60, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(61, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(62, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(63, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(64, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(65, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(66, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(67, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(68, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(69, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(70, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(71, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(72, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(73, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(74, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(75, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(76, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(77, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(78, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(79, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(80, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(81, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(82, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(83, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(84, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(85, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(86, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(87, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(88, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(89, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(90, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(91, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(92, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(93, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(94, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(95, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(96, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(97, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(98, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)

[
x == -1000*sqrt(log(2)),
x == 1000*sqrt(log(2)),
x == 0
]




(0, 5.0, 536.0, 1000.0, 2000.0)
(1, 14.9996250047, 1206.46569327, 1103.63832351, 109.893833332)
(2, 44.9887519122, 844.296105846, 979.421711502, 325.7239952)
(3, 134.693361942, 1241.75333995, 1125.86589935, 878.808093242)
(4, 396.815242728, 797.068462283, 950.840159549, 1217.89005067)
(5, 1017.00848646, 1266.78152451, 1155.00650144, 829.009228326)
(6, 1084.55686995, 763.651541803, 912.723988508, 1250.86085213)
(7, 1003.52637638, 1278.65011065, 1190.32389729, 784.892442321)
(8, 1099.73283592, 747.867918307, 865.858967209, 1271.69105727)
(9, 984.390365327, 1282.45597377, 1227.36218132, 757.116378753)
(10, 1120.58979508, 742.818111568, 816.328577148, 1280.36958831)
(11, 957.6680629, 1283.42139252, 1257.69616369, 745.585683665)
(12, 1148.23975195, 741.538121582, 775.764917795, 1282.90759456)
(13, 921.629370949, 1283.64642271, 1274.93517643, 742.219284786)
(14, 1182.46290539, 741.239825994, 752.802718045, 1283.52766385)
(15, 876.335068657, 1283.69771718, 1281.39365198, 741.397247645)
(16, 1219.74567439, 741.171834153, 744.227042225, 1283.67070129)
(17, 826.525219873, 1283.70934818, 1283.16447348, 741.207644106)
(18, 1252.25196378, 741.156417184, 741.878715433, 1283.70322518)
(19, 783.033976923, 1283.71198234, 1283.58732392, 741.164533261)
(20, 1272.38219681, 741.152925596, 741.31816404, 1283.71059577)
(21, 756.197058692, 1283.71257876, 1283.68428832, 741.154763508)
(22, 1280.59526418, 741.152135046, 741.189634253, 1283.71226482)
(23, 745.28623823, 1283.71271379, 1283.70630539, 741.152551168)
(24, 1282.96497988, 741.151956064, 741.160450414, 1283.71264271)
(25, 742.143201002, 1283.71274436, 1283.71129333, 741.152050274)
(26, 1283.54104105, 741.151915542, 741.153838881, 1283.71272827)
(27, 741.37951509, 1283.71275128, 1283.71242276, 741.151936872)
(28, 1283.6737505, 741.151906369, 741.15234182, 1283.71274764)
(29, 741.203602314, 1283.71275285, 1283.71267847, 741.151911197)
(30, 1283.70391658, 741.151904292, 741.152002877, 1283.71275202)
(31, 741.1636168, 1283.7127532, 1283.71273636, 741.151905385)
(32, 1283.71075235, 741.151903821, 741.151926141, 1283.71275302)
(33, 741.154555951, 1283.71275328, 1283.71274947, 741.151904069)
(34, 1283.71230028, 741.151903715, 741.151908768, 1283.71275324)
(35, 741.152504174, 1283.7127533, 1283.71275244, 741.151903771)
(36, 1283.71265074, 741.151903691, 741.151904835, 1283.71275329)
(37, 741.152039635, 1283.71275331, 1283.71275311, 741.151903703)
(38, 1283.71273009, 741.151903685, 741.151903944, 1283.7127533)
(39, 741.151934463, 1283.71275331, 1283.71275326, 741.151903688)
(40, 1283.71274805, 741.151903684, 741.151903743, 1283.71275331)
(41, 741.151910652, 1283.71275331, 1283.7127533, 741.151903685)
(42, 1283.71275212, 741.151903684, 741.151903697, 1283.71275331)
(43, 741.151905261, 1283.71275331, 1283.7127533, 741.151903684)
(44, 1283.71275304, 741.151903684, 741.151903687, 1283.71275331)
(45, 741.151904041, 1283.71275331, 1283.71275331, 741.151903684)
(46, 1283.71275325, 741.151903684, 741.151903684, 1283.71275331)
(47, 741.151903765, 1283.71275331, 1283.71275331, 741.151903684)
(48, 1283.71275329, 741.151903684, 741.151903684, 1283.71275331)
(49, 741.151903702, 1283.71275331, 1283.71275331, 741.151903684)
(50, 1283.7127533, 741.151903684, 741.151903684, 1283.71275331)
(51, 741.151903688, 1283.71275331, 1283.71275331, 741.151903684)
(52, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(53, 741.151903685, 1283.71275331, 1283.71275331, 741.151903684)
(54, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(55, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(56, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(57, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(58, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(59, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(60, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(61, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(62, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(63, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(64, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(65, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(66, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(67, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(68, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(69, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(70, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(71, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(72, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(73, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(74, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(75, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(76, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(77, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(78, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(79, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(80, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(81, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(82, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(83, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(84, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(85, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(86, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(87, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(88, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(89, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(90, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(91, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(92, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(93, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(94, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(95, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(96, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
(97, 741.151903684, 1283.71275331, 1283.71275331, 741.151903684)
(98, 1283.71275331, 741.151903684, 741.151903684, 1283.71275331)
Stability=vector(RDF,100) Stability1=vector(RDF,100) Stability2=vector(RDF,100) Stability3=vector(RDF,100) Stability[0]=5 Stability1[0]=536 Stability2[0]=1000 Stability3[0]=2000 for i in range(99): Stability[i+1]=3.7*Stability[i]*e^(-(Stability[i]/1000)^2) Stability1[i+1]=3.7*Stability1[i]*e^(-(Stability1[i]/1000)^2) Stability2[i+1]=3.7*Stability2[i]*e^(-(Stability2[i]/1000)^2) Stability3[i+1]=3.7*Stability3[i]*e^(-(Stability3[i]/1000)^2) points = [[x,Stability[x]] for x in range(100)] points1 = [[x,Stability1[x]] for x in range(100)] points2 = [[x,Stability2[x]] for x in range (100)] points3 = [[x,Stability3[x]] for x in range (100)] pplot=var('pplot') pplot=scatter_plot(points) pplot1=scatter_plot(points1) pplot2=scatter_plot(points2) pplot3=scatter_plot(points3) show(pplot) show(pplot1) show(pplot2) show(pplot3) for i in range(99): print(i,Stability[i],Stability1[i],Stability2[i],Stability3[i]) # Both equilibrium points are clearly unstable. There is some oscillation but since the points never converge to a # specific value and instead diverge away from the equilibrium points, the equilibrium points essentially only exist # in theory,suggesting an alternative form of stability. # In order to find the equilibrium points, we set P(n+1) equal to y and we set P(n) equal to x. After setting r equal # to 3.7, we solved for x. We then took the derivative of the original equation and found the slope at the equilibrium # points we found by solving for P in the original calculation to determine stability. If the absolute value of the derivative was less than # one at P, we concluded that P was stable.If not, we would concluded that P was unstable stability and search for # oscillation. 
       




(0, 5.0, 536.0, 1000.0, 2000.0)
(1, 18.4995375058, 1487.97435503, 1361.15393233, 135.535727777)
(2, 68.4248675238, 601.505764643, 789.721925748, 492.354096194)
(3, 251.989438521, 1549.92179515, 1566.1145005, 1429.55491842)
(4, 874.99775315, 519.068055378, 498.683278292, 685.277580926)
(5, 1505.57937542, 1466.94337175, 1438.87809612, 1585.33566599)
(6, 577.377693673, 631.025415415, 671.545406481, 475.13315275)
(7, 1530.67554959, 1567.88974771, 1582.78497982, 1402.73108896)
(8, 543.934934583, 496.478630939, 478.217546492, 725.495380406)
(9, 1497.11805258, 1435.66327196, 1407.69169345, 1585.79950311)
(10, 588.906599895, 676.265683006, 717.981254574, 474.573607794)
(11, 1540.38772515, 1583.80200333, 1586.48982673, 1401.82388611)
(12, 531.300571521, 476.986219508, 473.741610695, 726.873206236)
(13, 1482.34479132, 1405.71952287, 1400.47081275, 1585.63496861)
(14, 609.334373743, 720.964579582, 728.930270232, 474.7720448)
(15, 1555.28114891, 1586.25774868, 1585.3675576, 1402.14587264)
(16, 512.266490522, 474.021215113, 475.094667386, 726.384057507)
(17, 1457.91241868, 1400.92608414, 1402.66876346, 1585.69472159)
(18, 643.926790557, 728.237850102, 725.590002375, 474.699973632)
(19, 1573.84374019, 1585.46047613, 1585.78857839, 1402.02896155)
(20, 489.128310916, 474.982548617, 474.586781947, 726.561647811)
(21, 1424.69233578, 1402.48713124, 1401.84527139, 1585.67319824)
(22, 692.491340086, 725.865784669, 726.840714246, 474.725933267)
(23, 1586.18064626, 1585.75642217, 1585.63898347, 1402.07107656)
(24, 474.114130018, 474.625560573, 474.767202054, 726.497672137)
(25, 1401.07725099, 1401.90821258, 1402.13801808, 1585.68097429)
(26, 728.008002894, 726.74508736, 726.395988153, 474.716554356)
(27, 1585.49066859, 1585.65076181, 1585.69328173, 1402.05586146)
(28, 474.946120915, 474.752995131, 474.701710241, 726.520784676)
(29, 1402.42809908, 1402.11497461, 1402.03177905, 1585.67816794)
(30, 725.955426112, 726.430990445, 726.557367759, 474.719939157)
(31, 1585.74586886, 1585.68905238, 1585.67371926, 1402.06135258)
(32, 474.638287705, 474.706811261, 474.725304853, 726.512443334)
(33, 1401.92886752, 1402.04005489, 1402.07005712, 1585.67918114)
(34, 726.713707376, 726.544796018, 726.499220705, 474.718717118)
(35, 1585.6546146, 1585.67524897, 1585.68078636, 1402.05937009)
(36, 474.748348, 474.72345981, 474.716781017, 726.515454848)
(37, 1402.10743669, 1402.06706401, 1402.05622917, 1585.67881539)
(38, 726.442440442, 726.503767379, 726.520226098, 474.719158257)
(39, 1585.68766723, 1585.68023452, 1585.6782358, 1402.06008574)
(40, 474.708481899, 474.717446609, 474.719857307, 726.514367732)
(41, 1402.04276527, 1402.05730896, 1402.0612198, 1585.67894742)
(42, 726.540678721, 726.518585834, 726.512645039, 474.718999004)
(43, 1585.67574975, 1585.67843507, 1585.67915664, 1402.05982739)
(44, 474.722855807, 474.719616967, 474.718746662, 726.514760185)
(45, 1402.06608416, 1402.0608299, 1402.05941802, 1585.67889976)
(46, 726.505255811, 726.513237314, 726.515382041, 474.719056494)
(47, 1585.68005383, 1585.67908471, 1585.67882423, 1402.05992065)
(48, 474.717664535, 474.718833417, 474.719147591, 726.514618511)
(49, 1402.0576625, 1402.05955876, 1402.06006844, 1585.67891697)
(50, 726.518048784, 726.515168248, 726.514394017, 474.71903574)
(51, 1585.67850031, 1585.6788502, 1585.67894423, 1402.05988698)
(52, 474.719538281, 474.719116271, 474.719002854, 726.514669655)
(53, 1402.06070225, 1402.06001763, 1402.05983363, 1585.67891075)
(54, 726.513431224, 726.514471198, 726.514750697, 474.719043232)
(55, 1585.67906116, 1585.67893486, 1585.67890091, 1402.05989914)
(56, 474.718861821, 474.71901416, 474.719055104, 726.514651192)
(57, 1402.05960484, 1402.05985198, 1402.0599184, 1585.678913)
(58, 726.515098251, 726.514722835, 726.514621936, 474.719040527)
(59, 1585.6788587, 1585.67890429, 1585.67891655, 1402.05989475)
(60, 474.719106017, 474.719051022, 474.719036241, 726.514657857)
(61, 1402.06000099, 1402.05991178, 1402.0598878, 1585.67891219)
(62, 726.514496467, 726.514631994, 726.514668419, 474.719041504)
(63, 1585.67893179, 1585.67891533, 1585.6789109, 1402.05989634)
(64, 474.719017862, 474.719037715, 474.719043051, 726.514655451)
(65, 1402.05985798, 1402.05989019, 1402.05989885, 1585.67891248)
(66, 726.514713712, 726.514664788, 726.514651638, 474.719041151)
(67, 1585.6789054, 1585.67891134, 1585.67891294, 1402.05989576)
(68, 474.719049686, 474.719042519, 474.719040593, 726.51465632)
(69, 1402.05990961, 1402.05989798, 1402.05989486, 1585.67891237)
(70, 726.514635287, 726.514652949, 726.514657696, 474.719041278)
(71, 1585.67891493, 1585.67891278, 1585.67891221, 1402.05989597)
(72, 474.719038197, 474.719040785, 474.71904148, 726.514656006)
(73, 1402.05989097, 1402.05989517, 1402.0598963, 1585.67891241)
(74, 726.514663599, 726.514657223, 726.514655509, 474.719041232)
(75, 1585.67891149, 1585.67891226, 1585.67891247, 1402.0598959)
(76, 474.719042345, 474.719041411, 474.71904116, 726.514656119)
(77, 1402.0598977, 1402.05989618, 1402.05989578, 1585.6789124)
(78, 726.514653378, 726.51465568, 726.514656299, 474.719041249)
(79, 1585.67891273, 1585.67891245, 1585.67891238, 1402.05989592)
(80, 474.719040847, 474.719041185, 474.719041275, 726.514656078)
(81, 1402.05989527, 1402.05989582, 1402.05989596, 1585.6789124)
(82, 726.514657068, 726.514656237, 726.514656014, 474.719041243)
(83, 1585.67891228, 1585.67891238, 1585.67891241, 1402.05989591)
(84, 474.719041388, 474.719041266, 474.719041233, 726.514656093)
(85, 1402.05989615, 1402.05989595, 1402.0598959, 1585.6789124)
(86, 726.514655736, 726.514656036, 726.514656117, 474.719041245)
(87, 1585.67891244, 1585.67891241, 1585.6789124, 1402.05989592)
(88, 474.719041193, 474.719041237, 474.719041249, 726.514656088)
(89, 1402.05989583, 1402.0598959, 1402.05989592, 1585.6789124)
(90, 726.514656217, 726.514656108, 726.514656079, 474.719041244)
(91, 1585.67891239, 1585.6789124, 1585.6789124, 1402.05989591)
(92, 474.719041263, 474.719041247, 474.719041243, 726.51465609)
(93, 1402.05989595, 1402.05989592, 1402.05989591, 1585.6789124)
(94, 726.514656043, 726.514656082, 726.514656093, 474.719041245)
(95, 1585.67891241, 1585.6789124, 1585.6789124, 1402.05989592)
(96, 474.719041238, 474.719041244, 474.719041245, 726.514656089)
(97, 1402.0598959, 1402.05989591, 1402.05989592, 1585.6789124)
(98, 726.514656106, 726.514656092, 726.514656088, 474.719041245)




(0, 5.0, 536.0, 1000.0, 2000.0)
(1, 18.4995375058, 1487.97435503, 1361.15393233, 135.535727777)
(2, 68.4248675238, 601.505764643, 789.721925748, 492.354096194)
(3, 251.989438521, 1549.92179515, 1566.1145005, 1429.55491842)
(4, 874.99775315, 519.068055378, 498.683278292, 685.277580926)
(5, 1505.57937542, 1466.94337175, 1438.87809612, 1585.33566599)
(6, 577.377693673, 631.025415415, 671.545406481, 475.13315275)
(7, 1530.67554959, 1567.88974771, 1582.78497982, 1402.73108896)
(8, 543.934934583, 496.478630939, 478.217546492, 725.495380406)
(9, 1497.11805258, 1435.66327196, 1407.69169345, 1585.79950311)
(10, 588.906599895, 676.265683006, 717.981254574, 474.573607794)
(11, 1540.38772515, 1583.80200333, 1586.48982673, 1401.82388611)
(12, 531.300571521, 476.986219508, 473.741610695, 726.873206236)
(13, 1482.34479132, 1405.71952287, 1400.47081275, 1585.63496861)
(14, 609.334373743, 720.964579582, 728.930270232, 474.7720448)
(15, 1555.28114891, 1586.25774868, 1585.3675576, 1402.14587264)
(16, 512.266490522, 474.021215113, 475.094667386, 726.384057507)
(17, 1457.91241868, 1400.92608414, 1402.66876346, 1585.69472159)
(18, 643.926790557, 728.237850102, 725.590002375, 474.699973632)
(19, 1573.84374019, 1585.46047613, 1585.78857839, 1402.02896155)
(20, 489.128310916, 474.982548617, 474.586781947, 726.561647811)
(21, 1424.69233578, 1402.48713124, 1401.84527139, 1585.67319824)
(22, 692.491340086, 725.865784669, 726.840714246, 474.725933267)
(23, 1586.18064626, 1585.75642217, 1585.63898347, 1402.07107656)
(24, 474.114130018, 474.625560573, 474.767202054, 726.497672137)
(25, 1401.07725099, 1401.90821258, 1402.13801808, 1585.68097429)
(26, 728.008002894, 726.74508736, 726.395988153, 474.716554356)
(27, 1585.49066859, 1585.65076181, 1585.69328173, 1402.05586146)
(28, 474.946120915, 474.752995131, 474.701710241, 726.520784676)
(29, 1402.42809908, 1402.11497461, 1402.03177905, 1585.67816794)
(30, 725.955426112, 726.430990445, 726.557367759, 474.719939157)
(31, 1585.74586886, 1585.68905238, 1585.67371926, 1402.06135258)
(32, 474.638287705, 474.706811261, 474.725304853, 726.512443334)
(33, 1401.92886752, 1402.04005489, 1402.07005712, 1585.67918114)
(34, 726.713707376, 726.544796018, 726.499220705, 474.718717118)
(35, 1585.6546146, 1585.67524897, 1585.68078636, 1402.05937009)
(36, 474.748348, 474.72345981, 474.716781017, 726.515454848)
(37, 1402.10743669, 1402.06706401, 1402.05622917, 1585.67881539)
(38, 726.442440442, 726.503767379, 726.520226098, 474.719158257)
(39, 1585.68766723, 1585.68023452, 1585.6782358, 1402.06008574)
(40, 474.708481899, 474.717446609, 474.719857307, 726.514367732)
(41, 1402.04276527, 1402.05730896, 1402.0612198, 1585.67894742)
(42, 726.540678721, 726.518585834, 726.512645039, 474.718999004)
(43, 1585.67574975, 1585.67843507, 1585.67915664, 1402.05982739)
(44, 474.722855807, 474.719616967, 474.718746662, 726.514760185)
(45, 1402.06608416, 1402.0608299, 1402.05941802, 1585.67889976)
(46, 726.505255811, 726.513237314, 726.515382041, 474.719056494)
(47, 1585.68005383, 1585.67908471, 1585.67882423, 1402.05992065)
(48, 474.717664535, 474.718833417, 474.719147591, 726.514618511)
(49, 1402.0576625, 1402.05955876, 1402.06006844, 1585.67891697)
(50, 726.518048784, 726.515168248, 726.514394017, 474.71903574)
(51, 1585.67850031, 1585.6788502, 1585.67894423, 1402.05988698)
(52, 474.719538281, 474.719116271, 474.719002854, 726.514669655)
(53, 1402.06070225, 1402.06001763, 1402.05983363, 1585.67891075)
(54, 726.513431224, 726.514471198, 726.514750697, 474.719043232)
(55, 1585.67906116, 1585.67893486, 1585.67890091, 1402.05989914)
(56, 474.718861821, 474.71901416, 474.719055104, 726.514651192)
(57, 1402.05960484, 1402.05985198, 1402.0599184, 1585.678913)
(58, 726.515098251, 726.514722835, 726.514621936, 474.719040527)
(59, 1585.6788587, 1585.67890429, 1585.67891655, 1402.05989475)
(60, 474.719106017, 474.719051022, 474.719036241, 726.514657857)
(61, 1402.06000099, 1402.05991178, 1402.0598878, 1585.67891219)
(62, 726.514496467, 726.514631994, 726.514668419, 474.719041504)
(63, 1585.67893179, 1585.67891533, 1585.6789109, 1402.05989634)
(64, 474.719017862, 474.719037715, 474.719043051, 726.514655451)
(65, 1402.05985798, 1402.05989019, 1402.05989885, 1585.67891248)
(66, 726.514713712, 726.514664788, 726.514651638, 474.719041151)
(67, 1585.6789054, 1585.67891134, 1585.67891294, 1402.05989576)
(68, 474.719049686, 474.719042519, 474.719040593, 726.51465632)
(69, 1402.05990961, 1402.05989798, 1402.05989486, 1585.67891237)
(70, 726.514635287, 726.514652949, 726.514657696, 474.719041278)
(71, 1585.67891493, 1585.67891278, 1585.67891221, 1402.05989597)
(72, 474.719038197, 474.719040785, 474.71904148, 726.514656006)
(73, 1402.05989097, 1402.05989517, 1402.0598963, 1585.67891241)
(74, 726.514663599, 726.514657223, 726.514655509, 474.719041232)
(75, 1585.67891149, 1585.67891226, 1585.67891247, 1402.0598959)
(76, 474.719042345, 474.719041411, 474.71904116, 726.514656119)
(77, 1402.0598977, 1402.05989618, 1402.05989578, 1585.6789124)
(78, 726.514653378, 726.51465568, 726.514656299, 474.719041249)
(79, 1585.67891273, 1585.67891245, 1585.67891238, 1402.05989592)
(80, 474.719040847, 474.719041185, 474.719041275, 726.514656078)
(81, 1402.05989527, 1402.05989582, 1402.05989596, 1585.6789124)
(82, 726.514657068, 726.514656237, 726.514656014, 474.719041243)
(83, 1585.67891228, 1585.67891238, 1585.67891241, 1402.05989591)
(84, 474.719041388, 474.719041266, 474.719041233, 726.514656093)
(85, 1402.05989615, 1402.05989595, 1402.0598959, 1585.6789124)
(86, 726.514655736, 726.514656036, 726.514656117, 474.719041245)
(87, 1585.67891244, 1585.67891241, 1585.6789124, 1402.05989592)
(88, 474.719041193, 474.719041237, 474.719041249, 726.514656088)
(89, 1402.05989583, 1402.0598959, 1402.05989592, 1585.6789124)
(90, 726.514656217, 726.514656108, 726.514656079, 474.719041244)
(91, 1585.67891239, 1585.6789124, 1585.6789124, 1402.05989591)
(92, 474.719041263, 474.719041247, 474.719041243, 726.51465609)
(93, 1402.05989595, 1402.05989592, 1402.05989591, 1585.6789124)
(94, 726.514656043, 726.514656082, 726.514656093, 474.719041245)
(95, 1585.67891241, 1585.6789124, 1585.6789124, 1402.05989592)
(96, 474.719041238, 474.719041244, 474.719041245, 726.514656089)
(97, 1402.0598959, 1402.05989591, 1402.05989592, 1585.6789124)
(98, 726.514656106, 726.514656092, 726.514656088, 474.719041245)
Stability=vector(RDF,100) Stability1=vector(RDF,100) Stability2=vector(RDF,100) Stability3=vector(RDF,100) Stability[0]=5 Stability1[0]=536 Stability2[0]=1000 Stability3[0]=2000 for i in range(99): Stability[i+1]=3.8*Stability[i]*e^(-(Stability[i]/1000)^2) Stability1[i+1]=3.8*Stability1[i]*e^(-(Stability1[i]/1000)^2) Stability2[i+1]=3.8*Stability2[i]*e^(-(Stability2[i]/1000)^2) Stability3[i+1]=3.8*Stability3[i]*e^(-(Stability3[i]/1000)^2) points = [[x,Stability[x]] for x in range(100)] points1 = [[x,Stability1[x]] for x in range(100)] points2 = [[x,Stability2[x]] for x in range (100)] points3 = [[x,Stability3[x]] for x in range (100)] pplot=scatter_plot(points) pplot1=scatter_plot(points1) pplot2=scatter_plot(points2) pplot3=scatter_plot(points3) show(pplot) show(pplot1) show(pplot2) show(pplot3) for i in range(99): print(i,Stability[i],Stability1[i],Stability2[i],Stability3[i]) # Both equilibrium points are clearly unstable. There is some oscillation but since the points never converge to a # specific value and instead diverge away from the equilibrium points, the equilibrium points essentially only exist # in theory,suggesting an alternative form of stability. # In order to find the equilibrium points, we set P(n+1) equal to y and we set P(n) equal to x. After setting r equal # to 3.8, we solved for x. We then took the derivative of the original equation and found the slope at the equilibrium # points we found by solving for P in the original calculation to determine stability.If the absolute value of the # derivative was less than one at P, we concluded that P was stable.If not, we would concluded that P was unstable # stability and search for oscillation. 
       




(0, 5.0, 536.0, 1000.0, 2000.0)
(1, 18.9995250059, 1528.18987814, 1397.94187645, 139.198855554)
(2, 72.1721374807, 561.985467429, 752.5864867, 518.805094214)
(3, 272.829296824, 1557.20743765, 1623.16068782, 1506.23827439)
(4, 962.382090017, 523.61435775, 442.517945104, 592.06589634)
(5, 1448.42687739, 1512.59882402, 1382.51551053, 1584.58366708)
(6, 675.392485516, 583.258445148, 776.900186795, 488.907177279)
(7, 1626.42565966, 1577.25463697, 1614.43293294, 1462.85237269)
(8, 438.728459974, 498.054704822, 452.752863151, 654.065494616)
(9, 1375.26137733, 1476.82899581, 1401.58964518, 1620.36528374)
(10, 788.439988751, 633.734236769, 746.883985289, 445.779440009)
(11, 1609.08302537, 1611.64659559, 1624.6947725, 1388.67600551)
(12, 459.102102323, 456.052522216, 440.734744359, 767.152859361)
(13, 1413.04037587, 1407.57711464, 1379.11485041, 1618.35201173)
(14, 729.104391335, 737.564011685, 782.301687443, 448.138110194)
(15, 1628.19085585, 1626.77250946, 1612.02364693, 1393.08329516)
(16, 436.688609343, 438.327147886, 455.605097809, 760.210042639)
(17, 1371.31375128, 1374.48710053, 1406.76986908, 1620.80225502)
(18, 794.747269532, 789.67557766, 738.817610377, 445.268575987)
(19, 1605.83959102, 1608.46526004, 1626.52430646, 1387.71613106)
(20, 462.979271504, 459.838951476, 438.61429906, 768.668356038)
(21, 1419.88838303, 1414.35026527, 1375.04123734, 1617.77921873)
(22, 718.561710993, 727.082478812, 788.791212431, 448.810657819)
(23, 1629.32602175, 1628.4632501, 1608.90829883, 1394.33260644)
(24, 435.3801277, 436.374389998, 459.31043269, 758.24671241)
(25, 1368.76577336, 1370.70300018, 1413.41112392, 1621.44304566)
(26, 798.828310197, 795.724784597, 728.531861226, 444.520119468)
(27, 1603.62254455, 1605.31698094, 1628.27060815, 1386.30643335)
(28, 465.641600567, 463.605960985, 436.596595939, 770.896240573)
(29, 1424.52714174, 1420.98496731, 1371.13497737, 1616.91265235)
(30, 711.4596441, 716.879911053, 795.033352848, 449.829391635)
(31, 1629.68974958, 1629.44150214, 1605.68719311, 1396.21874662)
(32, 434.961414495, 435.247161117, 463.161963568, 755.286573409)
(33, 1367.94782724, 1368.50616264, 1420.20835467, 1622.36542706)
(34, 800.140044638, 799.244559752, 718.070795044, 443.444206541)
(35, 1602.8903445, 1603.39122631, 1629.36160639, 1384.27289283)
(36, 466.523014785, 465.919943262, 435.339151926, 774.114595284)
(37, 1426.05147457, 1425.00912615, 1368.6857837, 1615.60952393)
(38, 709.132900026, 710.723563148, 798.956553887, 451.364181559)
(39, 1629.73801346, 1629.70881648, 1603.55137901, 1399.04613871)
(40, 434.905874475, 434.93947256, 465.727221904, 750.858277611)
(41, 1367.83923669, 1367.90492953, 1424.67546588, 1623.64651859)
(42, 800.314250403, 800.208861377, 711.233087908, 441.952710031)
(43, 1602.7923901, 1602.85166943, 1629.69599223, 1381.44005793)
(44, 466.641012322, 466.569601149, 434.954230461, 778.606814494)
(45, 1426.25511027, 1426.13188372, 1367.93378244, 1613.6898734)
(46, 708.822336096, 709.010260865, 800.162575153, 453.631294648)
(47, 1629.74179606, 1629.7395821, 1602.8776852, 1403.19134985)
(48, 434.901521817, 434.904069431, 466.538263312, 744.385882352)
(49, 1367.83072554, 1367.83570714, 1426.07779563, 1625.30421153)
(50, 800.32790496, 800.319912902, 709.092754352, 440.02765229)
(51, 1602.7847052, 1602.78920332, 1629.73853772, 1377.76004417)
(52, 466.650270503, 466.644851494, 434.90527121, 784.45768385)
(53, 1426.27108338, 1426.26173406, 1367.83805708, 1611.01523408)
(54, 708.79797823, 708.812235241, 800.316142864, 456.802358637)
(55, 1629.74206621, 1629.74190856, 1602.79132507, 1408.92670812)
(56, 434.901210954, 434.901392367, 466.642295384, 735.470250685)
(57, 1367.83011767, 1367.83047241, 1426.25732397, 1627.16524871)
(58, 800.328880168, 800.328311055, 708.818960337, 437.87303271)
(59, 1602.7841563, 1602.78447663, 1629.74183373, 1373.60955077)
(60, 466.650931774, 466.650545868, 434.901478469, 791.076860183)
(61, 1426.27222424, 1426.27155846, 1367.83064078, 1607.7542355)
(62, 708.796238508, 708.797253778, 800.328040946, 460.687981633)
(63, 1629.74208536, 1629.74207419, 1602.78462866, 1415.85466989)
(64, 434.901188921, 434.901201776, 466.650362712, 724.763398877)
(65, 1367.83007459, 1367.83009973, 1426.27124246, 1628.74382568)
(66, 800.328949288, 800.328908959, 708.797735639, 436.050889097)
(67, 1602.7841174, 1602.7841401, 1629.74206888, 1370.07346778)
(68, 466.650978643, 466.650951297, 434.90120788, 796.732830083)
(69, 1426.2723051, 1426.27225793, 1367.83011166, 1604.7724781)
(70, 708.796115201, 708.796187145, 800.32888981, 464.259483495)
(71, 1629.74208672, 1629.74208593, 1602.78415087, 1422.1254486)
(72, 434.90118736, 434.901188271, 466.650938312, 715.132686844)
(73, 1367.83007154, 1367.83007332, 1426.27223552, 1629.54222113)
(74, 800.328954184, 800.328951327, 708.796221306, 435.131213014)
(75, 1602.78411464, 1602.78411625, 1629.74208555, 1368.27967614)
(76, 466.650981963, 466.650980026, 434.901188703, 799.607764854)
(77, 1426.27231083, 1426.27230749, 1367.83007417, 1603.18860406)
(78, 708.796106466, 708.796111562, 800.328949971, 466.163844124)
(79, 1629.74208681, 1629.74208676, 1602.78411701, 1425.43100458)
(80, 434.901187249, 434.901187314, 466.650979106, 710.07956294)
(81, 1367.83007132, 1367.83007145, 1426.2723059, 1629.72261629)
(82, 800.328954531, 800.328954328, 708.796113982, 434.923592378)
(83, 1602.78411445, 1602.78411456, 1629.74208673, 1367.87388072)
(84, 466.650982198, 466.650982061, 434.901187345, 800.25867139)
(85, 1426.27231124, 1426.272311, 1367.83007151, 1602.82365987)
(86, 708.796105847, 708.796106208, 800.328954232, 466.603342147)
(87, 1629.74208682, 1629.74208682, 1602.78411461, 1426.19011157)
(88, 434.901187242, 434.901187246, 466.650981996, 708.921458512)
(89, 1367.83007131, 1367.83007132, 1426.27231089, 1629.74065691)
(90, 800.328954555, 800.328954541, 708.79610638, 434.902832645)
(91, 1602.78411443, 1602.78411444, 1629.74208681, 1367.83328873)
(92, 466.650982215, 466.650982205, 434.901187248, 800.32379278)
(93, 1426.27231127, 1426.27231125, 1367.83007132, 1602.78701968)
(94, 708.796105803, 708.796105829, 800.328954534, 466.647482185)
(95, 1629.74208682, 1629.74208682, 1602.78411444, 1426.26627277)
(96, 434.901187241, 434.901187241, 466.650982201, 708.805314031)
(97, 1367.83007131, 1367.83007131, 1426.27231124, 1629.74198526)
(98, 800.328954557, 800.328954556, 708.796105841, 434.901304108)




(0, 5.0, 536.0, 1000.0, 2000.0)
(1, 18.9995250059, 1528.18987814, 1397.94187645, 139.198855554)
(2, 72.1721374807, 561.985467429, 752.5864867, 518.805094214)
(3, 272.829296824, 1557.20743765, 1623.16068782, 1506.23827439)
(4, 962.382090017, 523.61435775, 442.517945104, 592.06589634)
(5, 1448.42687739, 1512.59882402, 1382.51551053, 1584.58366708)
(6, 675.392485516, 583.258445148, 776.900186795, 488.907177279)
(7, 1626.42565966, 1577.25463697, 1614.43293294, 1462.85237269)
(8, 438.728459974, 498.054704822, 452.752863151, 654.065494616)
(9, 1375.26137733, 1476.82899581, 1401.58964518, 1620.36528374)
(10, 788.439988751, 633.734236769, 746.883985289, 445.779440009)
(11, 1609.08302537, 1611.64659559, 1624.6947725, 1388.67600551)
(12, 459.102102323, 456.052522216, 440.734744359, 767.152859361)
(13, 1413.04037587, 1407.57711464, 1379.11485041, 1618.35201173)
(14, 729.104391335, 737.564011685, 782.301687443, 448.138110194)
(15, 1628.19085585, 1626.77250946, 1612.02364693, 1393.08329516)
(16, 436.688609343, 438.327147886, 455.605097809, 760.210042639)
(17, 1371.31375128, 1374.48710053, 1406.76986908, 1620.80225502)
(18, 794.747269532, 789.67557766, 738.817610377, 445.268575987)
(19, 1605.83959102, 1608.46526004, 1626.52430646, 1387.71613106)
(20, 462.979271504, 459.838951476, 438.61429906, 768.668356038)
(21, 1419.88838303, 1414.35026527, 1375.04123734, 1617.77921873)
(22, 718.561710993, 727.082478812, 788.791212431, 448.810657819)
(23, 1629.32602175, 1628.4632501, 1608.90829883, 1394.33260644)
(24, 435.3801277, 436.374389998, 459.31043269, 758.24671241)
(25, 1368.76577336, 1370.70300018, 1413.41112392, 1621.44304566)
(26, 798.828310197, 795.724784597, 728.531861226, 444.520119468)
(27, 1603.62254455, 1605.31698094, 1628.27060815, 1386.30643335)
(28, 465.641600567, 463.605960985, 436.596595939, 770.896240573)
(29, 1424.52714174, 1420.98496731, 1371.13497737, 1616.91265235)
(30, 711.4596441, 716.879911053, 795.033352848, 449.829391635)
(31, 1629.68974958, 1629.44150214, 1605.68719311, 1396.21874662)
(32, 434.961414495, 435.247161117, 463.161963568, 755.286573409)
(33, 1367.94782724, 1368.50616264, 1420.20835467, 1622.36542706)
(34, 800.140044638, 799.244559752, 718.070795044, 443.444206541)
(35, 1602.8903445, 1603.39122631, 1629.36160639, 1384.27289283)
(36, 466.523014785, 465.919943262, 435.339151926, 774.114595284)
(37, 1426.05147457, 1425.00912615, 1368.6857837, 1615.60952393)
(38, 709.132900026, 710.723563148, 798.956553887, 451.364181559)
(39, 1629.73801346, 1629.70881648, 1603.55137901, 1399.04613871)
(40, 434.905874475, 434.93947256, 465.727221904, 750.858277611)
(41, 1367.83923669, 1367.90492953, 1424.67546588, 1623.64651859)
(42, 800.314250403, 800.208861377, 711.233087908, 441.952710031)
(43, 1602.7923901, 1602.85166943, 1629.69599223, 1381.44005793)
(44, 466.641012322, 466.569601149, 434.954230461, 778.606814494)
(45, 1426.25511027, 1426.13188372, 1367.93378244, 1613.6898734)
(46, 708.822336096, 709.010260865, 800.162575153, 453.631294648)
(47, 1629.74179606, 1629.7395821, 1602.8776852, 1403.19134985)
(48, 434.901521817, 434.904069431, 466.538263312, 744.385882352)
(49, 1367.83072554, 1367.83570714, 1426.07779563, 1625.30421153)
(50, 800.32790496, 800.319912902, 709.092754352, 440.02765229)
(51, 1602.7847052, 1602.78920332, 1629.73853772, 1377.76004417)
(52, 466.650270503, 466.644851494, 434.90527121, 784.45768385)
(53, 1426.27108338, 1426.26173406, 1367.83805708, 1611.01523408)
(54, 708.79797823, 708.812235241, 800.316142864, 456.802358637)
(55, 1629.74206621, 1629.74190856, 1602.79132507, 1408.92670812)
(56, 434.901210954, 434.901392367, 466.642295384, 735.470250685)
(57, 1367.83011767, 1367.83047241, 1426.25732397, 1627.16524871)
(58, 800.328880168, 800.328311055, 708.818960337, 437.87303271)
(59, 1602.7841563, 1602.78447663, 1629.74183373, 1373.60955077)
(60, 466.650931774, 466.650545868, 434.901478469, 791.076860183)
(61, 1426.27222424, 1426.27155846, 1367.83064078, 1607.7542355)
(62, 708.796238508, 708.797253778, 800.328040946, 460.687981633)
(63, 1629.74208536, 1629.74207419, 1602.78462866, 1415.85466989)
(64, 434.901188921, 434.901201776, 466.650362712, 724.763398877)
(65, 1367.83007459, 1367.83009973, 1426.27124246, 1628.74382568)
(66, 800.328949288, 800.328908959, 708.797735639, 436.050889097)
(67, 1602.7841174, 1602.7841401, 1629.74206888, 1370.07346778)
(68, 466.650978643, 466.650951297, 434.90120788, 796.732830083)
(69, 1426.2723051, 1426.27225793, 1367.83011166, 1604.7724781)
(70, 708.796115201, 708.796187145, 800.32888981, 464.259483495)
(71, 1629.74208672, 1629.74208593, 1602.78415087, 1422.1254486)
(72, 434.90118736, 434.901188271, 466.650938312, 715.132686844)
(73, 1367.83007154, 1367.83007332, 1426.27223552, 1629.54222113)
(74, 800.328954184, 800.328951327, 708.796221306, 435.131213014)
(75, 1602.78411464, 1602.78411625, 1629.74208555, 1368.27967614)
(76, 466.650981963, 466.650980026, 434.901188703, 799.607764854)
(77, 1426.27231083, 1426.27230749, 1367.83007417, 1603.18860406)
(78, 708.796106466, 708.796111562, 800.328949971, 466.163844124)
(79, 1629.74208681, 1629.74208676, 1602.78411701, 1425.43100458)
(80, 434.901187249, 434.901187314, 466.650979106, 710.07956294)
(81, 1367.83007132, 1367.83007145, 1426.2723059, 1629.72261629)
(82, 800.328954531, 800.328954328, 708.796113982, 434.923592378)
(83, 1602.78411445, 1602.78411456, 1629.74208673, 1367.87388072)
(84, 466.650982198, 466.650982061, 434.901187345, 800.25867139)
(85, 1426.27231124, 1426.272311, 1367.83007151, 1602.82365987)
(86, 708.796105847, 708.796106208, 800.328954232, 466.603342147)
(87, 1629.74208682, 1629.74208682, 1602.78411461, 1426.19011157)
(88, 434.901187242, 434.901187246, 466.650981996, 708.921458512)
(89, 1367.83007131, 1367.83007132, 1426.27231089, 1629.74065691)
(90, 800.328954555, 800.328954541, 708.79610638, 434.902832645)
(91, 1602.78411443, 1602.78411444, 1629.74208681, 1367.83328873)
(92, 466.650982215, 466.650982205, 434.901187248, 800.32379278)
(93, 1426.27231127, 1426.27231125, 1367.83007132, 1602.78701968)
(94, 708.796105803, 708.796105829, 800.328954534, 466.647482185)
(95, 1629.74208682, 1629.74208682, 1602.78411444, 1426.26627277)
(96, 434.901187241, 434.901187241, 466.650982201, 708.805314031)
(97, 1367.83007131, 1367.83007131, 1426.27231124, 1629.74198526)
(98, 800.328954557, 800.328954556, 708.796105841, 434.901304108)
Stability=vector(RDF,5000) Stability1=vector(RDF,5000) Stability2=vector(RDF,5000) Stability3=vector(RDF,5000) Stability[0]=5 Stability1[0]=536 Stability2[0]=1000 Stability3[0]=2000 for i in range(1000): Stability[i+1]=4.2*Stability[i]*e^(-(Stability[i]/1000)^2) Stability1[i+1]=4.2*Stability1[i]*e^(-(Stability1[i]/1000)^2) Stability2[i+1]=4.2*Stability2[i]*e^(-(Stability2[i]/1000)^2) Stability3[i+1]=4.2*Stability3[i]*e^(-(Stability3[i]/1000)^2) points = [[x,Stability[x]] for x in range(899,1000)] points1 = [[x,Stability1[x]] for x in range(899,1000)] points2 = [[x,Stability2[x]] for x in range (899,1000)] points3 = [[x,Stability3[x]] for x in range (899,1000)] pplot=scatter_plot(points) pplot1=scatter_plot(points1) pplot2=scatter_plot(points2) pplot3=scatter_plot(points3) show(pplot) show(pplot1) show(pplot2) show(pplot3) for i in range(899,1000): print(i,Stability[i],Stability1[i],Stability2[i],Stability3[i]) # Both equilibrium points are clearly unstable. Additionally, there does not appear to be any legitimate case of # oscillation. The points do not seem to have any obvious relation to the equilibrium point. It is difficult to # decipher any alternative form of stability from the graphs. 
       




(899, 559.060713221, 569.358008934, 1058.60220517, 360.514130975)
(900, 1717.78976291, 1729.21946419, 1449.75599076, 1329.61571168)
(901, 377.313564431, 365.150639306, 744.298847972, 953.225813189)
(902, 1374.43164702, 1342.19218446, 1796.41156984, 1613.71927064)
(903, 872.897161553, 930.446129297, 299.326927421, 501.343522924)
(904, 1711.2045567, 1644.21559217, 1149.43327394, 1637.67157055)
(905, 384.450987871, 462.505439308, 1288.08509068, 470.665236244)
(906, 1392.83744705, 1568.43182478, 1029.5049073, 1583.99568922)
(907, 840.659451914, 562.807526109, 1498.22666484, 541.177885094)
(908, 1741.605829, 1722.04860693, 666.765793671, 1695.88338427)
(909, 352.290640631, 372.748165557, 1795.3347109, 401.425967646)
(910, 1306.92502571, 1362.45890228, 300.306780294, 1435.06416969)
(911, 994.722546747, 894.116989634, 1152.51860296, 768.653435526)
(912, 1553.20440054, 1688.29759781, 1282.40219286, 1788.07807386)
(913, 584.476191211, 410.022365476, 1040.04519955, 306.972432555)
(914, 1744.43875701, 1455.6064447, 1480.90691647, 1173.3408642)
(915, 349.396053313, 734.707379405, 693.956439001, 1243.84931923)
(916, 1298.82206032, 1798.59644802, 1800.67734627, 1111.97115674)
(917, 1009.64978901, 297.346234066, 295.468962206, 1356.27087403)
(918, 1530.04226012, 1143.17753273, 1137.22505777, 905.156674501)
(919, 618.381661787, 1299.58027691, 1310.48176407, 1675.52858834)
(920, 1771.87659696, 1008.25082959, 988.187224962, 424.780448863)
(921, 322.251513551, 1532.24160959, 1563.12564217, 1489.53391323)
(922, 1219.95692037, 615.113757113, 570.301668914, 680.339396891)
(923, 1156.73939944, 1769.63185554, 1730.22371863, 1798.6912877)
(924, 1274.61436208, 324.412039229, 364.095576156, 297.260480723)
(925, 1054.52077815, 1226.4214136, 1339.34416193, 1142.90612012)
(926, 1456.67563729, 1144.62325795, 935.589753569, 1300.07814305)
(927, 732.961202488, 1296.92706891, 1637.51220552, 1007.33247183)
(928, 1798.92613047, 1013.14806188, 470.865138702, 1533.68223948)
(929, 297.048217492, 1524.51740823, 1584.37021989, 612.978663716)
(930, 1142.23409475, 626.635093157, 540.663885138, 1768.11946588)
(931, 1301.31055378, 1777.16978231, 1695.21505854, 325.873702868)
(932, 1005.06000165, 317.199038351, 402.178218725, 1230.77674229)
(933, 1537.23624996, 1204.71554213, 1436.88452751, 1136.46049536)
(934, 607.729983558, 1185.2911757, 765.615362658, 1311.87927669)
(935, 1764.2473886, 1221.59553075, 1789.33182649, 985.622320591)
(936, 329.638021147, 1153.66831058, 305.812964472, 1566.98145202)
(937, 1241.92571151, 1280.28237028, 1169.73983979, 564.849915729)
(938, 1115.57305159, 1043.98198444, 1250.53892378, 1724.32191248)
(939, 1349.79065811, 1474.36645352, 1099.45161405, 370.327454122)
(940, 916.768050029, 704.375602033, 1378.64646648, 1356.04781191)
(941, 1661.49879682, 1801.27725084, 865.472777481, 905.555515349)
(942, 441.413305438, 294.929418073, 1718.68942629, 1675.05674016)
(943, 1525.71808887, 1135.51007084, 376.345836712, 425.332731785)
(944, 624.836049641, 1313.61562694, 1371.90674467, 1490.77046142)
(945, 1776.0618193, 982.437909054, 877.356355784, 678.399474689)
(946, 318.251729057, 1571.73820836, 1706.57479196, 1798.29628651)
(947, 1207.90536196, 558.168537145, 389.525993953, 297.617760231)
(948, 1179.31871967, 1716.75878395, 1405.69149103, 1144.03661032)
(949, 1232.72701206, 378.424721661, 818.440403625, 1298.00394038)
(950, 1132.80565645, 1377.32215065, 1759.24569445, 1011.15976076)
(951, 1318.55086933, 867.802922507, 334.547718405, 1527.66192589)
(952, 973.40157607, 1716.37065142, 1256.31972746, 621.929820766)
(953, 1585.0490204, 378.843642157, 1088.64288776, 1774.21807079)
(954, 539.733091166, 1378.40951259, 1397.76293023, 320.00923153)
(955, 1693.99929212, 865.889521647, 832.115827413, 1213.21417647)
(956, 403.549186913, 1718.27676858, 1748.72008937, 1169.37459213)
(957, 1440.1909097, 376.789494209, 345.054369075, 1251.21697517)
(958, 760.111876882, 1373.06516039, 1286.5557994, 1098.18329465)
(959, 1791.4490362, 875.309426088, 1032.33933412, 1380.89969663)
(960, 303.862399213, 1708.71240708, 1493.59721655, 861.513798731)
(961, 1163.6619119, 387.176949634, 673.976071894, 1722.56471543)
(962, 1261.81017086, 1399.76599848, 1797.29024192, 372.1976012)
(963, 1078.38758807, 828.651791472, 298.529184934, 1361.00458326)
(964, 1415.71072864, 1751.48760577, 1146.91676974, 896.707229122)
(965, 801.299370998, 342.268822284, 1292.71378847, 1685.35261907)
(966, 1770.89167009, 1278.61537989, 1020.93544203, 413.394013099)
(967, 323.198176693, 1047.07963961, 1512.09280605, 1463.50727966)
(968, 1222.79334685, 1469.19370039, 645.425510631, 721.853383216)
(969, 1151.42329656, 712.673522032, 1787.22647379, 1800.52625738)
(970, 1284.42062827, 1801.1928133, 307.761858697, 295.60496585)
(971, 1036.29921396, 295.005314982, 1175.78755483, 1137.65706181)
(972, 1487.0947482, 1135.7514286, 1239.29954098, 1309.69184096)
(973, 684.174770413, 1313.17477968, 1120.49158784, 989.637742626)
(974, 1799.3896555, 983.246157654, 1340.91287712, 1560.93553635)
(975, 296.629593074, 1570.53408536, 932.755486212, 573.412526903)
(976, 1140.90787826, 559.855231018, 1641.21946722, 1733.48307085)
(977, 1303.74131858, 1718.70242299, 466.229502619, 360.686430596)
(978, 1000.58133692, 376.331869735, 1575.60181645, 1330.08588143)
(979, 1544.19491127, 1371.87025225, 552.777751796, 952.371190652)
(980, 597.53004185, 877.420867479, 1710.39105017, 1614.90030879)
(981, 1756.0933549, 1706.50708202, 385.339316791, 499.801002098)
(982, 337.669494552, 389.600565273, 1395.10146262, 1635.15602512)
(983, 1265.38465251, 1405.87891365, 836.727842201, 473.827250943)
(984, 1071.71734329, 818.118304727, 1744.93031951, 1589.88198205)
(985, 1427.27754775, 1759.4805769, 348.895554857, 533.13510683)
(986, 781.712810355, 334.315962904, 1297.41489939, 1685.17780409)
(987, 1782.00966255, 1255.64404696, 1012.24724057, 413.594759574)
(988, 312.630855205, 1089.90569964, 1525.94348758, 1463.974905)
(989, 1190.78685687, 1395.53976617, 624.498655177, 721.096201169)
(990, 1211.33795866, 835.967582061, 1775.85119083, 1800.60383182)
(991, 1172.88951471, 1745.56325, 318.452142408, 295.535130841)
(992, 1244.68823693, 348.251885706, 1208.5117981, 1137.43525168)
(993, 1110.40054834, 1295.60257766, 1178.1830255, 1310.0974479)
(994, 1359.09080727, 1015.59473217, 1234.84162941, 988.892869232)
(995, 900.119861567, 1520.63232129, 1128.84321193, 1562.06106214)
(996, 1681.4246081, 632.476709452, 1325.76669562, 571.812525683)
(997, 417.921036438, 1780.59193225, 960.23054182, 1731.81651643)
(998, 1473.97636678, 313.963906016, 1603.93495395, 362.426691978)
(999, 704.999599475, 1194.86587708, 514.241204061, 1334.8225532)




(899, 559.060713221, 569.358008934, 1058.60220517, 360.514130975)
(900, 1717.78976291, 1729.21946419, 1449.75599076, 1329.61571168)
(901, 377.313564431, 365.150639306, 744.298847972, 953.225813189)
(902, 1374.43164702, 1342.19218446, 1796.41156984, 1613.71927064)
(903, 872.897161553, 930.446129297, 299.326927421, 501.343522924)
(904, 1711.2045567, 1644.21559217, 1149.43327394, 1637.67157055)
(905, 384.450987871, 462.505439308, 1288.08509068, 470.665236244)
(906, 1392.83744705, 1568.43182478, 1029.5049073, 1583.99568922)
(907, 840.659451914, 562.807526109, 1498.22666484, 541.177885094)
(908, 1741.605829, 1722.04860693, 666.765793671, 1695.88338427)
(909, 352.290640631, 372.748165557, 1795.3347109, 401.425967646)
(910, 1306.92502571, 1362.45890228, 300.306780294, 1435.06416969)
(911, 994.722546747, 894.116989634, 1152.51860296, 768.653435526)
(912, 1553.20440054, 1688.29759781, 1282.40219286, 1788.07807386)
(913, 584.476191211, 410.022365476, 1040.04519955, 306.972432555)
(914, 1744.43875701, 1455.6064447, 1480.90691647, 1173.3408642)
(915, 349.396053313, 734.707379405, 693.956439001, 1243.84931923)
(916, 1298.82206032, 1798.59644802, 1800.67734627, 1111.97115674)
(917, 1009.64978901, 297.346234066, 295.468962206, 1356.27087403)
(918, 1530.04226012, 1143.17753273, 1137.22505777, 905.156674501)
(919, 618.381661787, 1299.58027691, 1310.48176407, 1675.52858834)
(920, 1771.87659696, 1008.25082959, 988.187224962, 424.780448863)
(921, 322.251513551, 1532.24160959, 1563.12564217, 1489.53391323)
(922, 1219.95692037, 615.113757113, 570.301668914, 680.339396891)
(923, 1156.73939944, 1769.63185554, 1730.22371863, 1798.6912877)
(924, 1274.61436208, 324.412039229, 364.095576156, 297.260480723)
(925, 1054.52077815, 1226.4214136, 1339.34416193, 1142.90612012)
(926, 1456.67563729, 1144.62325795, 935.589753569, 1300.07814305)
(927, 732.961202488, 1296.92706891, 1637.51220552, 1007.33247183)
(928, 1798.92613047, 1013.14806188, 470.865138702, 1533.68223948)
(929, 297.048217492, 1524.51740823, 1584.37021989, 612.978663716)
(930, 1142.23409475, 626.635093157, 540.663885138, 1768.11946588)
(931, 1301.31055378, 1777.16978231, 1695.21505854, 325.873702868)
(932, 1005.06000165, 317.199038351, 402.178218725, 1230.77674229)
(933, 1537.23624996, 1204.71554213, 1436.88452751, 1136.46049536)
(934, 607.729983558, 1185.2911757, 765.615362658, 1311.87927669)
(935, 1764.2473886, 1221.59553075, 1789.33182649, 985.622320591)
(936, 329.638021147, 1153.66831058, 305.812964472, 1566.98145202)
(937, 1241.92571151, 1280.28237028, 1169.73983979, 564.849915729)
(938, 1115.57305159, 1043.98198444, 1250.53892378, 1724.32191248)
(939, 1349.79065811, 1474.36645352, 1099.45161405, 370.327454122)
(940, 916.768050029, 704.375602033, 1378.64646648, 1356.04781191)
(941, 1661.49879682, 1801.27725084, 865.472777481, 905.555515349)
(942, 441.413305438, 294.929418073, 1718.68942629, 1675.05674016)
(943, 1525.71808887, 1135.51007084, 376.345836712, 425.332731785)
(944, 624.836049641, 1313.61562694, 1371.90674467, 1490.77046142)
(945, 1776.0618193, 982.437909054, 877.356355784, 678.399474689)
(946, 318.251729057, 1571.73820836, 1706.57479196, 1798.29628651)
(947, 1207.90536196, 558.168537145, 389.525993953, 297.617760231)
(948, 1179.31871967, 1716.75878395, 1405.69149103, 1144.03661032)
(949, 1232.72701206, 378.424721661, 818.440403625, 1298.00394038)
(950, 1132.80565645, 1377.32215065, 1759.24569445, 1011.15976076)
(951, 1318.55086933, 867.802922507, 334.547718405, 1527.66192589)
(952, 973.40157607, 1716.37065142, 1256.31972746, 621.929820766)
(953, 1585.0490204, 378.843642157, 1088.64288776, 1774.21807079)
(954, 539.733091166, 1378.40951259, 1397.76293023, 320.00923153)
(955, 1693.99929212, 865.889521647, 832.115827413, 1213.21417647)
(956, 403.549186913, 1718.27676858, 1748.72008937, 1169.37459213)
(957, 1440.1909097, 376.789494209, 345.054369075, 1251.21697517)
(958, 760.111876882, 1373.06516039, 1286.5557994, 1098.18329465)
(959, 1791.4490362, 875.309426088, 1032.33933412, 1380.89969663)
(960, 303.862399213, 1708.71240708, 1493.59721655, 861.513798731)
(961, 1163.6619119, 387.176949634, 673.976071894, 1722.56471543)
(962, 1261.81017086, 1399.76599848, 1797.29024192, 372.1976012)
(963, 1078.38758807, 828.651791472, 298.529184934, 1361.00458326)
(964, 1415.71072864, 1751.48760577, 1146.91676974, 896.707229122)
(965, 801.299370998, 342.268822284, 1292.71378847, 1685.35261907)
(966, 1770.89167009, 1278.61537989, 1020.93544203, 413.394013099)
(967, 323.198176693, 1047.07963961, 1512.09280605, 1463.50727966)
(968, 1222.79334685, 1469.19370039, 645.425510631, 721.853383216)
(969, 1151.42329656, 712.673522032, 1787.22647379, 1800.52625738)
(970, 1284.42062827, 1801.1928133, 307.761858697, 295.60496585)
(971, 1036.29921396, 295.005314982, 1175.78755483, 1137.65706181)
(972, 1487.0947482, 1135.7514286, 1239.29954098, 1309.69184096)
(973, 684.174770413, 1313.17477968, 1120.49158784, 989.637742626)
(974, 1799.3896555, 983.246157654, 1340.91287712, 1560.93553635)
(975, 296.629593074, 1570.53408536, 932.755486212, 573.412526903)
(976, 1140.90787826, 559.855231018, 1641.21946722, 1733.48307085)
(977, 1303.74131858, 1718.70242299, 466.229502619, 360.686430596)
(978, 1000.58133692, 376.331869735, 1575.60181645, 1330.08588143)
(979, 1544.19491127, 1371.87025225, 552.777751796, 952.371190652)
(980, 597.53004185, 877.420867479, 1710.39105017, 1614.90030879)
(981, 1756.0933549, 1706.50708202, 385.339316791, 499.801002098)
(982, 337.669494552, 389.600565273, 1395.10146262, 1635.15602512)
(983, 1265.38465251, 1405.87891365, 836.727842201, 473.827250943)
(984, 1071.71734329, 818.118304727, 1744.93031951, 1589.88198205)
(985, 1427.27754775, 1759.4805769, 348.895554857, 533.13510683)
(986, 781.712810355, 334.315962904, 1297.41489939, 1685.17780409)
(987, 1782.00966255, 1255.64404696, 1012.24724057, 413.594759574)
(988, 312.630855205, 1089.90569964, 1525.94348758, 1463.974905)
(989, 1190.78685687, 1395.53976617, 624.498655177, 721.096201169)
(990, 1211.33795866, 835.967582061, 1775.85119083, 1800.60383182)
(991, 1172.88951471, 1745.56325, 318.452142408, 295.535130841)
(992, 1244.68823693, 348.251885706, 1208.5117981, 1137.43525168)
(993, 1110.40054834, 1295.60257766, 1178.1830255, 1310.0974479)
(994, 1359.09080727, 1015.59473217, 1234.84162941, 988.892869232)
(995, 900.119861567, 1520.63232129, 1128.84321193, 1562.06106214)
(996, 1681.4246081, 632.476709452, 1325.76669562, 571.812525683)
(997, 417.921036438, 1780.59193225, 960.23054182, 1731.81651643)
(998, 1473.97636678, 313.963906016, 1603.93495395, 362.426691978)
(999, 704.999599475, 1194.86587708, 514.241204061, 1334.8225532)