0% found this document useful (0 votes)
29 views14 pages

SP Lines, Actividad 1, Diego A Lancheros S: Cod: 2238702 Probeta 3 H (MM) 0.56

The document contains the results of an experiment involving measuring the height (H) of water at different times. It includes: - A table listing the measured heights (H) at different times (x) - Plots of the data - Derivations of polynomial functions (S1, S2, S3) fitted to different sections of the data - Equations relating the parameters (a, b, c, d) of the polynomial functions to the measured data points - The values of the parameters that provide the best fit to the data
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views14 pages

SP Lines, Actividad 1, Diego A Lancheros S: Cod: 2238702 Probeta 3 H (MM) 0.56

The document contains the results of an experiment involving measuring the height (H) of water at different times. It includes: - A table listing the measured heights (H) at different times (x) - Plots of the data - Derivations of polynomial functions (S1, S2, S3) fitted to different sections of the data - Equations relating the parameters (a, b, c, d) of the polynomial functions to the measured data points - The values of the parameters that provide the best fit to the data
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 14

SP LINES, ACTIVIDAD 1, DIEGO A

LANCHEROS S
Cod: 2238702
Probeta 3
H(mm)=0.56

Printed by Wolfram Mathematica Student Edition


2 SP LINE 1.nb

In[379]:= ListPlot[{{5.44067 * 10 ^ - 1, 2.643326155}, {5.5957138 * 10 ^ - 1, 2.79611785},


representación de lista
{5.6610105 * 10 ^ - 1, 2.9412699}, {5.7905738 * 10 ^ - 1, 3.193376}}]

Printed by Wolfram Mathematica Student Edition


SP LINE 1.nb 3

In[380]:= Show[%379, AxesStyle → Black]


muestra estilo de ejes negro

3.2

3.1

3.0

Out[380]= 2.9

2.8

2.7

0.545 0.550 0.555 0.560 0.565 0.570 0.575

In[109]:= S1 := a1 * x ^ 3 + b1 * x ^ 2 + c1 * x + d1

In[51]:= S2 := a2 * x ^ 3 + b2 * x ^ 2 + c2 * x + d2

In[52]:= S3 := a3 * x ^ 3 + b3 * x ^ 2 + c3 * x + d3

In[53]:= D[S1, x]
deriva

Out[53]= c1 + 2 b1 x + 3 a1 x2

In[54]:= S1 ' := c1 + 2 b1 x + 3 a1 x2

In[55]:= D[S2, x]
deriva

Out[55]= c2 + 2 b2 x + 3 a2 x2

In[56]:= S2 ' := c2 + 2 b2 x + 3 a2 x2

In[57]:= D[S3, x]
deriva

Out[57]= c3 + 2 b3 x + 3 a3 x2

In[58]:= S3 ' := c3 + 2 b3 x + 3 a3 x2

In[59]:= D[S1 ', x]


deriva

Out[59]= 2 b1 + 6 a1 x

In[60]:= S1 '' := 2 b1 + 6 a1 x

Printed by Wolfram Mathematica Student Edition


4 SP LINE 1.nb

In[61]:= D[S2 ', x]


deriva

Out[61]= 2 b2 + 6 a2 x

In[62]:= S2 '' := 2 b2 + 6 a2 x

In[63]:= D[S3 ', x]


deriva

Out[63]= 2 b3 + 6 a3 x

In[64]:= S3 '' := 2 b3 + 6 a3 x

In[77]:= Piecewise[{{S1, 0.559571387 >= x >= 0.5440670069},


función a trozos
{S2, 0.5661010554 >= x >= 0.559571387}, {S3, 0.5790573862 >= x >= 0.5661010554}}]
d1 + c1 x + b1 x2 + a1 x3 0.559571 ≥ x ≥ 0.544067
d2 + c2 x + b2 x2 + a2 x3 0.566101 ≥ x ≥ 0.559571
Out[77]=
d3 + c3 x + b3 x2 + a3 x3 0.579057 ≥ x ≥ 0.566101
0 True

In[78]:= Piecewise[{{S1 ', 0.559571387 >= x >= 0.5440670069},


función a trozos
{S2 ', 0.5661010554 >= x >= 0.559571387}, {S3 ', 0.5790573862 >= x >= 0.5661010554}}]
c1 + 2 b1 x + 3 a1 x2 0.559571 ≥ x ≥ 0.544067
c2 + 2 b2 x + 3 a2 x2 0.566101 ≥ x ≥ 0.559571
Out[78]=
c3 + 2 b3 x + 3 a3 x2 0.579057 ≥ x ≥ 0.566101
0 True

In[79]:= Piecewise[{{S1 '', 0.559571387 >= x >= 0.5440670069},


función a trozos
{S2 '', 0.5661010554 >= x >= 0.559571387}, {S3 '', 0.5790573862 >= x >= 0.5661010554}}]
2 b1 + 6 a1 x 0.559571 ≥ x ≥ 0.544067
2 b2 + 6 a2 x 0.566101 ≥ x ≥ 0.559571
Out[79]=
2 b3 + 6 a3 x 0.579057 ≥ x ≥ 0.566101
0 True

In[131]:= X1 = 0.5440670069
Out[131]= 0.544067

In[132]:= Y1 = 2.643326155
Out[132]= 2.64333

In[133]:= X2 = 0.559571387
Out[133]= 0.559571

In[134]:= Y2 = 2.796117853
Out[134]= 2.79612

Printed by Wolfram Mathematica Student Edition


SP LINE 1.nb 5

In[135]:= X3 = 0.5661010554
Out[135]= 0.566101

In[136]:= Y3 = 2.941269966
Out[136]= 2.94127

In[137]:= X4 = 0.5790573862
Out[137]= 0.579057

In[138]:= Y4 = 3.193376268
Out[138]= 3.19338

In[140]:= Ec1 := d1 + c1 X1 + b1 X12 + a1 X13

In[162]:= Ec1 ⩵ Y1
Out[162]= 0.161049 a1 + 0.296009 b1 + 0.544067 c1 + d1 ⩵ 2.64333

In[143]:= Ec2 := d1 + c1 X2 + b1 X22 + a1 X23

In[163]:= Ec2 ⩵ Y2
Out[163]= 0.175213 a1 + 0.31312 b1 + 0.559571 c1 + d1 ⩵ 2.79612

In[147]:= Ec3 := d2 + c2 X2 + b2 X22 + a2 X23

In[164]:= Ec3 ⩵ Y2
Out[164]= 0.175213 a2 + 0.31312 b2 + 0.559571 c2 + d2 ⩵ 2.79612

In[148]:= Ec4 := d2 + c2 X3 + b2 X32 + a2 X33

In[166]:= Ec4 ⩵ Y3
Out[166]= 0.181419 a2 + 0.32047 b2 + 0.566101 c2 + d2 ⩵ 2.94127

In[152]:= Ec5 := d3 + c3 X3 + b3 X32 + a3 X33

In[167]:= Ec5 ⩵ Y3
Out[167]= 0.181419 a3 + 0.32047 b3 + 0.566101 c3 + d3 ⩵ 2.94127

In[174]:= Ec6 := d3 + c3 X4 + b3 X42 + a3 X43

In[175]:= Ec6 == Y4
Out[175]= 0.194162 a3 + 0.335307 b3 + 0.579057 c3 + d3 ⩵ 3.19338

In[176]:= Ec7 := c1 + 2 b1 X2 + 3 a1 X22

In[177]:= Ec7 == c2 + 2 b2 X2 + 3 a2 X22


Out[177]= 0.93936 a1 + 1.11914 b1 + c1 ⩵ 0.93936 a2 + 1.11914 b2 + c2

In[181]:= Ec8 := c2 + 2 b2 X3 + 3 a2 X32

Printed by Wolfram Mathematica Student Edition


6 SP LINE 1.nb

In[195]:= Ec8 == c3 + 2 b3 X3 + 3 a3 X32


Out[195]= 0.961411 a2 + 1.1322 b2 + c2 ⩵ 0.961411 a3 + 1.1322 b3 + c3

In[184]:= Ec9 := 2 b1 + 6 a1 X2

In[185]:= Ec9 == 2 b2 + 6 a2 X2
Out[185]= 3.35743 a1 + 2 b1 ⩵ 3.35743 a2 + 2 b2

In[188]:= Ec10 := 2 b2 + 6 a2 X3

In[189]:= Ec10 == 2 b3 + 6 a3 X3
Out[189]= 3.39661 a2 + 2 b2 ⩵ 3.39661 a3 + 2 b3

In[190]:= Ec11 := 2 b1 + 6 a1 X1

In[191]:= Ec11 ⩵ 0
Out[191]= 3.2644 a1 + 2 b1 ⩵ 0

In[192]:= Ec12 := 2 b3 + 6 a3 X4

In[193]:= Ec12 ⩵ 0
Out[193]= 3.47434 a3 + 2 b3 ⩵ 0

0.16104868058973307 0.29600890799712465 0.5440670069 1 0 0


0.1752130694421542 0.31312013714910375 0.559571387 1 0 0
0 0 0 0 0.1752130694421542 0.31312013714910375
0 0 0 0 0.18141863445250436 0.32047040492499385
0 0 0 0 0 0
In[304]:=
0 0 0 0 0 0
0.9393604114473113 1.119142774 1 0 - 0.9393604114473113 - 1.119142774
0 0 0 0 0.9614112147749816 1.1322021108
3.3574283219999996 2 0 0 - 3.3574283219999996 -2
0 0 0 0 3.3966063324 2
3.2644020414 2 0 0 0 0
0 0 0 0 0 0

a1 2.643326155
b1 2.796117853
c1 2.796117853
d1 2.941269966
a2 2.941269966
* b2 = 3.193376268
c2 0
d2 0
a3 0
b3 0
c3 0
d3 0
Out[304]= {{2.64333}, {2.79612}, {2.79612}, {2.94127},
{2.94127}, {3.19338}, {0}, {0}, {0}, {0}, {0}, {0}}

Printed by Wolfram Mathematica Student Edition


SP LINE 1.nb 7

In[306]:= Inverse
matriz inversa

0.16104868058973307 0.29600890799712465 0.5440670069 1 0 0


0.1752130694421542 0.31312013714910375 0.559571387 1 0 0
0 0 0 0 0.1752130694421542 0.31312013714910375
0 0 0 0 0.18141863445250436 0.32047040492499385
0 0 0 0 0 0
0 0 0 0 0 0
0.9393604114473113 1.119142774 1 0 - 0.9393604114473113 - 1.119142774
0 0 0 0 0.9614112147749816 1.1322021108
3.3574283219999996 2 0 0 - 3.3574283219999996 -
0 0 0 0 3.3966063324 2
3.2644020414 2 0 0 0 0
0 0 0 0 0 0

Out[306]= {96 802.1, - 96 802.1, - 268 363., 268 363., 19 408.7,


- 19 408.7, 1500.86, - 251.465, 2.99303, - 1.08602, - 14.628, 0.543011},
{- 158 000., 158 000., 438 022., - 438 022., - 31 678.8, 31 678.8, - 2449.7, 410.441,
- 4.88523, 1.77261, 24.3758, - 0.886303}, {85 875.1, - 85 875.1, - 238 249., 238 249.,
17 230.7, - 17 230.7, 1332.44, - 223.247, 2.65718, - 0.964155, - 13.5383, 0.482077},
{- 15 541.1, 15 542.1, 43 184.4, - 43 184.4, - 3123.2, 3123.2, - 241.515, 40.4652, - 0.481633,
0.17476, 2.50612, - 0.0873801}, - 268 363., 268 363., 1.3458 × 10 6 , - 1.3458 × 106 ,
- 357 108., 357 108., - 4160.8, 4626.8, 21.5036, 19.9821, 10.7518, - 9.99107,
455 007., - 455 007., - 2.27169 × 106 , 2.27169 × 106 , 600 384., - 600 384.,
7054.61, - 7778.78, - 36.4591, - 33.5948, - 18.2296, 16.7974,
- 257 147., 257 147., 1.27803 × 106 , - 1.27803 × 106 , - 336 454., 336 454., - 3986.9,
4359.21, 20.6048, 18.8264, 10.3024, - 9.41322, {48 440.6, - 48 440.6, - 239 636., 239 637.,
62 847.4, - 62 847.4, 751.041, - 814.271, - 3.88148, - 3.51666, - 1.94074, 1.75833},
{19 408.7, - 19 408.7, - 357 108., 357 108., 156 748., - 156 748., 300.919, - 2030.87,
- 1.55519, 4.09283, - 0.777594, 17.2492}, {- 33 716.2, 33 716.2, 620 357., - 620 357.,
- 272 298., 272 298., - 522.749, 3527.98, 2.70163, - 7.10995, 1.35082, - 29.4648},
{19 520.3, - 19 520.3, - 359 163., 359 163., 157 573., - 157 573., 302.651, - 2042.56,
- 1.56414, 4.11638, - 0.782069, 16.7759}, {- 3766.54, 3766.54, 69 302.1, - 69 302.1,
- 30 374.6, 30 375.6, - 58.3979, 394.122, 0.301808, - 0.794275, 0.150904, - 3.18356}

Printed by Wolfram Mathematica Student Edition


8 SP LINE 1.nb

In[307]:= MatrixForm[
forma de matriz
{{96802.09100560642`, - 96802.09100560642`, - 268363.0063221195`, 268363.0063221195`,
19408.660720891377`, - 19408.660720891377`, 1500.8564134257103`, - 251.46502868483367`,
2.9930343564456052`, - 1.086021365637862`, - 14.627958511083172`, 0.5430106825070311`},
{- 158000.47174524597`, 158000.47174524597`, 438022.37283707527`, - 438022.37283707527`,
- 31678.8358390535`, 31678.8358390535`, - 2449.699369917602`, 410.4414764896792`,
- 4.885233731580229`, 1.772605181493418`, 24.375768812547243`, - 0.8863025902386426`},
{85875.07600015291`, - 85875.07600015291`, - 238249.01068807842`, 238249.01068807842`,
17230.74383053367`, - 17230.743830533673`, 1332.4398194227579`, - 223.2472169984685`,
2.6571750113826056`, - 0.9641549313910218`, - 13.53832091868627`, 0.4820774654186266`},
{- 15541.09749715417`, 15542.09749715417`, 43184.409967421234`, - 43184.409967421234`,
- 3123.2008203186106`, 3123.2008203186106`, - 241.51465415403618`, 40.465222982877094`,
- 0.4816327871220665`, 0.17476027165594132`, 2.5061224508201847`, - 0.0873801357769679`},
{- 268363.0063244811`, 268363.0063244811`, 1.345796654109536`*^6, - 1.345796654109536`*^6,
- 357107.57171554596`, 357107.57171554596`, - 4160.802054833446`, 4626.803830331308`,
21.503552192971256`, 19.982133659053943`, 10.751776096524697`, - 9.991066827253235`},
{455007.3482457337`, - 455007.3482457337`, - 2.271690307244812`*^6, 2.271690307244812`*^6,
600384.2953984985`, - 600384.2953984985`, 7054.606875494908`, - 7778.777538307826`,
- 36.459102151206025`, - 33.59480500458449`, - 18.229551075666603`, 16.797402498476004`},
{- 257146.56007405117`, 257146.56007405117`, 1.2780286720769627`*^6,
- 1.2780286720769627`*^6, - 336453.6991876866`, 336453.6991876866`,
- 3986.8980087955715`, 4359.205425559368`, 20.604794049411794`,
18.82643584102334`, 10.302397024740445`, - 9.413217918381179`},
{48440.600059196404`, - 48440.600059196404`, - 239636.45870657108`, 239637.45870657108`,
62847.36395969014`, - 62847.36395969014`, 751.0414755898673`, - 814.2712373697432`,
- 3.881477502799953`, - 3.516655837702274`, - 1.9407387514061742`, 1.7583279184515845`},
{19408.660722094708`, - 19408.660722094708`, - 357107.57171856065`, 357107.57171856065`,
156747.67839241424`, - 156747.67839241424`, 300.91925306729627`, - 2030.874773384101`,
- 1.555188826319295`, 4.0928291208911105`, - 0.7775944131623751`, 17.249171809583004`},
{- 33716.185042136305`, 33716.185042136305`, 620357.3312147364`, - 620357.3312147364`,
- 272297.7028284889`, 272297.70282848895`, - 522.7485484152148`, 3527.979113926005`,
2.7016307304477323`, - 7.109948798733967`, 1.3508153652285837`, - 29.46478102652054`},
{19520.347919038715`, - 19520.347919038715`, - 359162.54832224373`, 359162.54832224373`,
157572.5010372702`, - 157572.5010372702`, 302.65089382101996`, - 2042.5614484222315`,
- 1.5641381651334996`, 4.116381318483036`, - 0.7820690825694486`, 16.775853000236566`},
{- 3766.5428105179512`, 3766.5428105179512`, 69302.10054663167`,
- 69302.10054663167`, - 30374.55382117695`, 30375.55382117695`,
- 58.39791139719273`, 394.1218245957716`, 0.30180780511577154`,
- 0.7942751084542579`, 0.15090390255838165`, - 3.183558977206147`}}]

Printed by Wolfram Mathematica Student Edition


SP LINE 1.nb 9

Out[307]//MatrixForm=
96 802.1 - 96 802.1 - 268 363. 268 363. 19 408.7 - 19 408.7 1500.86 - 251.465 2.99303
- 158 000. 158 000. 438 022. - 438 022. - 31 678.8 31 678.8 - 2449.7 410.441 -
85 875.1 - 85 875.1 - 238 249. 238 249. 17 230.7 - 17 230.7 1332.44 - 223.247 2.65718
- 15 541.1 15 542.1 43 184.4 - 43 184.4 - 3123.2 3123.2 - 241.515 40.4652 -
- 268 363. 268 363. 1.3458 × 106 - 1.3458 × 106 - 357 108. 357 108. - 4160.8 4626.8 21.5036
6
455 007. - 455 007. - 2.27169 × 10 2.27169 × 106 600 384. - 600 384. 7054.61 - 7778.78 -
6
- 257 147. 257 147. 1.27803 × 10 - 1.27803 × 106 - 336 454. 336 454. - 3986.9 4359.21 20.6048
48 440.6 - 48 440.6 - 239 636. 239 637. 62 847.4 - 62 847.4 751.041 - 814.271 -
19 408.7 - 19 408.7 - 357 108. 357 108. 156 748. - 156 748. 300.919 - 2030.87 -
- 33 716.2 33 716.2 620 357. - 620 357. - 272 298. 272 298. - 522.749 3527.98 2.70163
19 520.3 - 19 520.3 - 359 163. 359 163. 157 573. - 157 573. 302.651 - 2042.56 -
- 3766.54 3766.54 69 302.1 - 69 302.1 - 30 374.6 30 375.6 - 58.3979 394.122 0.301808

96802.09100560642` - 96802.09100560642` - 268363.0063221195` 268363.0063221195`


- 158000.47174524597` 158000.47174524597` 438022.37283707527` - 438022.37283707527`
85875.07600015291` - 85875.07600015291` - 238249.01068807842` 238249.01068807842`
- 15541.09749715417` 15542.09749715417` 43184.409967421234` - 43184.409967421234`
- 268363.0063244811` 268363.0063244811` 1.345796654109536`*^6 - 1.345796654109536`*^6
In[308]:=
455007.3482457337` - 455007.3482457337` - 2.271690307244812`*^6 2.271690307244812`*^6
- 257146.56007405117` 257146.56007405117` 1.2780286720769627`*^6 - 1.2780286720769627`*^6
48440.600059196404` - 48440.600059196404` - 239636.45870657108` 239637.45870657108`
19408.660722094708` - 19408.660722094708` - 357107.57171856065` 357107.57171856065`
- 33716.185042136305` 33716.185042136305` 620357.3312147364` - 620357.3312147364`
19520.347919038715` - 19520.347919038715` - 359162.54832224373` 359162.54832224373`
- 3766.5428105179512` 3766.5428105179512` 69302.10054663167` - 69302.10054663167`
Out[308]= {{19 269.9}, {- 31 452.3}, {17 117.4}, {- 3103.58}, {- 64 312.5}, {108 859.},
{- 61 396.6}, {11 541.1}, {9352.36}, {- 16 246.7}, {9425.64}, {- 1823.04}}

In[310]:= MatrixForm[{{19269.855882874268`}, {- 31452.278440769005`}, {17117.36953576657`},


forma de matriz
{- 3103.5829529888288`}, {- 64312.5192742208`}, {108858.63834546902`},
{- 61396.60478155385`}, {11541.141549553082`}, {9352.358829016564`},
{- 16246.657375004143`}, {9425.6351619403`}, {- 1823.040043048415`}}]
Out[310]//MatrixForm=
19 269.9
- 31 452.3
17 117.4
- 3103.58
- 64 312.5
108 859.
- 61 396.6
11 541.1
9352.36
- 16 246.7
9425.64
- 1823.04

Printed by Wolfram Mathematica Student Edition


10 SP LINE 1.nb

19269.855882874268` a1
- 31452.278440769005` b1
17117.36953576657` c1
- 3103.5829529888288` d1
- 64312.5192742208` a2
In[311]:=
108858.63834546902` . b2
- 61396.60478155385` c2
11541.141549553082` d2
9352.358829016564` a3
- 16246.657375004143` b3
9425.6351619403` c3
- 1823.040043048415` d3
Out[311]= {{19 269.9}, {- 31 452.3}, {17 117.4}, {- 3103.58}, {- 64 312.5}, {108 859.},
{- 61 396.6}, {11 541.1}, {9352.36}, {- 16 246.7}, {9425.64}, {- 1823.04}}.
{{- 58 637.1}, {95 707.5}, {- 52 047.3}, {9433.03}, {- 326 378.}, {550 623.},
{- 309 621.}, {58 032.2}, {- 94 317.5}, {163 846.}, {- 94 840.8}, {18 295.7}}

In[312]:= a1 = 19269.855882874268`
Out[312]= 19 269.9

In[313]:= b1 = - 31452.278440769005`
Out[313]= - 31 452.3

In[314]:= c1 = 17117.36953576657`
Out[314]= 17 117.4

In[315]:= d1 = - 3103.5829529888288`
Out[315]= - 3103.58

In[316]:= a2 = - 64312.5192742208`
Out[316]= - 64 312.5

In[317]:= b2 = 108858.63834546902`
Out[317]= 108 859.

In[318]:= c2 = - 61396.60478155385`
Out[318]= - 61 396.6

In[319]:= d2 = 11541.141549553082`
Out[319]= 11 541.1

In[320]:= a3 = 9352.358829016564`
Out[320]= 9352.36

In[321]:= b3 = - 16 246.657375004143
Out[321]= - 16 246.7

In[322]:= c3 = 9425.6351619403`
Out[322]= 9425.64

Printed by Wolfram Mathematica Student Edition


SP LINE 1.nb 11

In[323]:= d3 = - 1823.040043048415`
Out[323]= - 1823.04

In[338]:= Sn1 := a1 * X ^ 3 + b1 * X ^ 2 + c1 * X + d1

In[339]:= Sn2 := a2 * X ^ 3 + b2 * X ^ 2 + c2 * X + d2

In[340]:= Sn3 := a3 * X ^ 3 + b3 * X ^ 2 + c3 * X + d3

In[356]:= Piecewise[{{Sn1, 0.559571387 ≥ X >= 0.5440670069},


función a trozos
{Sn2, 0.5661010554 >= X >= 0.559571387}, {Sn3, 0.5790573862 ≥ X >= 0.5661010554}}]
- 3103.58 + 17 117.4 X - 31 452.3 X2 + 19 269.9 X3 0.559571 ≥ X ≥ 0.544067
11 541.1 - 61 396.6 X + 108 859. X2 - 64 312.5 X3 0.566101 ≥ X ≥ 0.559571
Out[356]=
- 1823.04 + 9425.64 X - 16 246.7 X2 + 9352.36 X3 0.579057 ≥ X ≥ 0.566101
0 True

In[329]:= Sn1
Out[329]= - 3103.58 + 17 117.4 X - 31 452.3 X2 + 19 269.9 X3

In[349]:= Plot- 3103.58 + 17 117.4 X - 31 452.3 X2 + 19 269.9 X3 , {X, 0.544067, 0.559571}


representación gráfica
2.80

2.75

Out[349]=

2.70

2.65
0.545 0.550 0.555

In[337]:= Sn2
Out[337]= 11 541.1 - 61 396.6 X + 108 859. X2 - 64 312.5 X3

Printed by Wolfram Mathematica Student Edition


12 SP LINE 1.nb

In[346]:= Plot11 541.1 - 61 396.6 X + 108 859. X2 - 64 312.5 X3 , {X, 0.559571, 0.566101}
representación gráfica

2.90

Out[346]=

2.85

0.560 0.561 0.562 0.563 0.564 0.565 0.566

In[331]:= Sn3
Out[331]= - 1823.04 + 9425.64 X - 16 246.7 X2 + 9352.36 X3

In[348]:= Plot- 1823.04 + 9425.64 X - 16 246.7 X2 + 9352.36 X3 , {X, 0.566101, 0.579057}


representación gráfica
3.20

3.15

3.10

Out[348]=
3.05

3.00

0.568 0.570 0.572 0.574 0.576 0.578

In[369]:= Plot[{Sn1, Sn2, Sn3}, {X, 0.5, 0.6}, PlotLegends → "Expressions"]


representación gráfica leyendas de representación

4
Sn1
Out[369]= 2 Sn2
Sn3

0.52 0.54 0.56 0.58 0.60

-2

Printed by Wolfram Mathematica Student Edition


SP LINE 1.nb 13

In[354]:= Plot[{Sn1, Sn2, Sn3}, {X, 0.559571387, 0.579057}, PlotLegends → "Expressions"]


representación gráfica leyendas de representación

3.6

3.4

Sn1
Out[354]=
3.2 Sn2
Sn3

3.0

0.565 0.570 0.575

In[368]:= Plot[
representación gráfica
Piecewise[{{Sn1, 0.559571387 ≥ X >= 0.5440670069}, {Sn2, 0.5661010554 >= X >= 0.559571387},
función a trozos
{Sn3, 0.5790573862 ≥ X >= 0.5661010554}}], {X, 0.53, 0.62}]

3.0

2.5

2.0

Out[368]=
1.5

1.0

0.5

0.54 0.56 0.58 0.60 0.62

In[370]:= Xh = 0.56
Out[370]= 0.56

In[374]:= Sh := 11541.141549553082` - 61396.60478155385` Xh +


108858.63834546902` Xh2 - 64312.5192742208` Xh3

In[375]:= Sh
Out[375]= 2.80447

Printed by Wolfram Mathematica Student Edition


14 SP LINE 1.nb

Valor interpolado S(0.56)= 2.80447 MPa

Printed by Wolfram Mathematica Student Edition

You might also like