<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Solve the problem using the Monte Carlo method in Mathcad</title>
    <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045032#M219743</link>
    <description>&lt;P&gt;I was wondering if AI could do this in MathCad. I got this answer, so I decided to share it, or is this illegal?&lt;/P&gt;</description>
    <pubDate>Wed, 26 Nov 2025 14:12:27 GMT</pubDate>
    <dc:creator>NickKemaev</dc:creator>
    <dc:date>2025-11-26T14:12:27Z</dc:date>
    <item>
      <title>Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1044972#M219734</link>
      <description>&lt;P&gt;&lt;STRONG&gt;"Problem.&lt;/STRONG&gt; A Poisson stream of requests arrives at a single-channel queuing system with loss. The time between the arrivals of two consecutive requests is distributed according to the law&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DD_14416900_0-1764150530574.png" style="width: 150px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/131610i23BAF00142DD7908/image-dimensions/150x44?v=v2" width="150" height="44" role="button" title="DD_14416900_0-1764150530574.png" alt="DD_14416900_0-1764150530574.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the service time of requests is random and distributed according to the law&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DD_14416900_3-1764150685539.png" style="width: 168px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/131613i90C0FC5038963E5B/image-dimensions/168x35?v=v2" width="168" height="35" role="button" title="DD_14416900_3-1764150685539.png" alt="DD_14416900_3-1764150685539.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Find using the Monte Carlo method over a time period &lt;SPAN class=""&gt;T=30&lt;/SPAN&gt;&amp;nbsp;min: a) the number of served requests; b) the average service time of one request."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If possible, please provide screenshots of the solution to the problem using Mathcad so that I can understand and clarify the essence of the solution.&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 09:56:31 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1044972#M219734</guid>
      <dc:creator>DD_14416900</dc:creator>
      <dc:date>2025-11-26T09:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1044992#M219735</link>
      <description>&lt;P&gt;Monte Carlo Simulation of a Single-Channel Lossy System (M/M/1/1)&lt;BR /&gt;1. Problem Statement&lt;BR /&gt;The flow of requests enters the system according to an exponential distribution:&lt;BR /&gt;• Arrival rate: λ = 0.8 1/min&lt;/P&gt;&lt;P&gt;• Service time is exponentially distributed: μ = 1.5 1/min&lt;/P&gt;&lt;P&gt;• System: single-channel, no queue (M/M/1/1)&lt;/P&gt;&lt;P&gt;• Simulation time: T = 30 min&lt;BR /&gt;If the server is busy when a request arrives, the request is lost.&lt;BR /&gt;—————&lt;BR /&gt;2. Monte Carlo Method&lt;BR /&gt;Random Variable Generation&lt;BR /&gt;• Interarrival time:&lt;BR /&gt;τ = − ln(U) / λ&lt;/P&gt;&lt;P&gt;• Service time:&lt;BR /&gt;s = − ln(U) / μ&lt;BR /&gt;where U is a uniform random variable U(0.1).&lt;BR /&gt;—————&lt;BR /&gt;3. Algorithm for Simulating a Single Trajectory&lt;BR /&gt;1. Set t = 0, BusyUntil = 0.&lt;/P&gt;&lt;P&gt;2. Generate the next arrival time:&lt;BR /&gt;t ← t + InterArrival().&lt;/P&gt;&lt;P&gt;3. If t &amp;gt; T, the simulation ends.&lt;/P&gt;&lt;P&gt;4. If the server is free (t ≥ BusyUntil):&lt;BR /&gt;– Generate service time s = ServiceTime().&lt;/P&gt;&lt;P&gt;– Set BusyUntil = t + s.&lt;/P&gt;&lt;P&gt;– Increment the counter of processed requests.&lt;/P&gt;&lt;P&gt;5. Repeat steps until time T is reached.&lt;BR /&gt;—————&lt;BR /&gt;4. Repeating the Simulation Multiple Times&lt;BR /&gt;The process is repeated 5000 times, collecting statistics:&lt;BR /&gt;• number of requests processed,&lt;BR /&gt;• total service time. —————&lt;BR /&gt;5. Final Simulation Results&lt;BR /&gt;Results:&lt;BR /&gt;• Average number of requests processed in 30 minutes:&lt;BR /&gt;≈ 15.86&lt;BR /&gt;• Average service time per request:&lt;BR /&gt;≈ 0.664 min&lt;BR /&gt;—————&lt;BR /&gt;6. Interpretation&lt;BR /&gt;Theoretically, the average number of received requests:&lt;BR /&gt;E[N] = λT = 0.8 × 30 = 24.&lt;BR /&gt;Probability that the server is free:&lt;BR /&gt;ρ = λ / (λ + μ) = 0.8 / 2.3 ≈ 0.348.&lt;BR /&gt;That is, approximately 65% ​​of requests should be processed.&lt;BR /&gt;The simulation yielded 15.8 out of 24 → also approximately 66%.&lt;BR /&gt;Average service time:&lt;BR /&gt;1 / μ = 1 / 1.5 = 0.666 min.&lt;BR /&gt;The Monte Carlo results are in complete agreement with the theory.&lt;BR /&gt;—————&lt;BR /&gt;7. Mathcad Model Structure (for transfer to .mcdx)&lt;BR /&gt;Generator functions:&lt;BR /&gt;InterArrival() := − ln( RAND() ) / λ&lt;BR /&gt;ServiceTime() := − ln( RAND() ) / μ&lt;BR /&gt;Single trajectory simulation program:&lt;BR /&gt;SimulateOnce() :=&lt;BR /&gt;(&lt;BR /&gt;t ← 0;&lt;BR /&gt;BusyUntil ← 0;&lt;BR /&gt;Served ← 0;&lt;BR /&gt;Ssum ← 0;&lt;/P&gt;&lt;P&gt;WHILE t &amp;lt; T DO&lt;BR /&gt;t ← t + InterArrival();&lt;BR /&gt;IF t ≥ T THEN BREAK; ENDIF;&lt;/P&gt;&lt;P&gt;IF t ≥ BusyUntil THEN&lt;BR /&gt;s ← ServiceTime();&lt;BR /&gt;BusyUntil ← t + s;&lt;BR /&gt;Served ← Served + 1;&lt;BR /&gt;Ssum ← Ssum + s;&lt;BR /&gt;ENDIF;&lt;BR /&gt;ENDWHILE;&lt;/P&gt;&lt;P&gt;Served, Ssum&lt;BR /&gt;)&lt;BR /&gt;Multiple runs:&lt;BR /&gt;N := 5000&lt;BR /&gt;k := 1..N&lt;BR /&gt;Results[k := SimulateOnce()&lt;BR /&gt;Results:&lt;BR /&gt;AvgServed := mean( Results[0, k] )&lt;BR /&gt;AvgServiceTime := mean( Results[1, k] ) / AvgServed&lt;BR /&gt;—————&lt;BR /&gt;This document can be used as a tutorial or transferred entirely to Mathcad.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 11:48:29 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1044992#M219735</guid>
      <dc:creator>NickKemaev</dc:creator>
      <dc:date>2025-11-26T11:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045028#M219742</link>
      <description>&lt;P&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/852639"&gt;@NickKemaev&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any specific reason why you are posting an AI 'answer' here in the forum?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 14:00:19 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045028#M219742</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-11-26T14:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045032#M219743</link>
      <description>&lt;P&gt;I was wondering if AI could do this in MathCad. I got this answer, so I decided to share it, or is this illegal?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 14:12:27 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045032#M219743</guid>
      <dc:creator>NickKemaev</dc:creator>
      <dc:date>2025-11-26T14:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045056#M219745</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/852639"&gt;@NickKemaev&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I was wondering if AI could do this in MathCad. I got this answer, so I decided to share it, or is this illegal?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That may not be illegal, but it doesn't make much sense, does it? That's why I asked if you had a specific reason for posting it.&lt;/P&gt;
&lt;P&gt;Apart from the fact that you posted that as your answer and didn't cite any sources.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;On the one hand, I guess that every user themselves can ask an AI of their choice if they think they will find what they are looking for there, and on the other hand, the AI answer you posted has very little to do with Mathcad, even if the AI you used claims otherwise. So the answer is quite misleading and, in my opinion, not very helpful.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 15:22:23 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045056#M219745</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-11-26T15:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045058#M219746</link>
      <description>&lt;P&gt;No it is not illegal.&amp;nbsp; When AI actually writes the XML zipped files of Mathcad instead of the pseudo text version, it would be getting somewhere.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The answer adds units of time to the two functions f() and fl().&amp;nbsp; This is not stated in the problem definition.&lt;/P&gt;
&lt;P&gt;The AI uses ENDIF and ENDWHILE that do not exist in Mathcad.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use AI to write C++ code.&amp;nbsp; It generally has errors and takes a lot of debugging, but it saves time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&lt;/P&gt;
&lt;P&gt;Terry&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 15:35:55 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045058#M219746</guid>
      <dc:creator>terryhendicott</dc:creator>
      <dc:date>2025-11-26T15:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045086#M219749</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/66934"&gt;@Werner_E&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/852639"&gt;@NickKemaev&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I was wondering if AI could do this in MathCad. I got this answer, so I decided to share it, or is this illegal?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That may not be illegal, but it doesn't make much sense, does it? That's why I asked if you had a specific reason for posting it.&lt;/P&gt;
&lt;P&gt;Apart from the fact that you posted that as your answer and didn't cite any sources.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;On the one hand, I guess that every user themselves can ask an AI of their choice if they think they will find what they are looking for there, and on the other hand, the AI answer you posted has very little to do with Mathcad, even if the AI you used claims otherwise. So the answer is quite misleading and, in my opinion, not very helpful.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/269418"&gt;@terryhendicott&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;No it is not illegal.&amp;nbsp; When AI actually writes the XML zipped files of Mathcad instead of the pseudo text version, it would be getting somewhere.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The answer adds units of time to the two functions f() and fl().&amp;nbsp; This is not stated in the problem definition.&lt;/P&gt;
&lt;P&gt;The AI uses ENDIF and ENDWHILE that do not exist in Mathcad.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use AI to write C++ code.&amp;nbsp; It generally has errors and takes a lot of debugging, but it saves time.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;And AI is in the future of Mathcad Prime.&amp;nbsp; A brief mention at about 20:16 of the Mathcad Prime 12 sneak preview and Prime roadmap presentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.ptc.com/en/resources/cad/mathcad/webcast/mathcad-prime-12-roadmap" target="_blank"&gt;https://www.ptc.com/en/resources/cad/mathcad/webcast/mathcad-prime-12-roadmap&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stuart&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I look forward to AIs putting in Mathcad Enhancement Proposals to add Multi-Dimensional Arrays (&lt;EM&gt;with the MEP transcribed from Klingon into classical early-dynastic Sumerian cuneiform&lt;/EM&gt;) -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"MDAs. taH pagh taHbe'. DaH mu'tlheghvam vIqelnIS - and the answer had better be '&lt;SPAN&gt;𒀀𒀭&lt;/SPAN&gt;', Terrans.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...&amp;nbsp;&lt;EM&gt;no, you fool, &lt;SPAN title="cuneiform text"&gt;&lt;FONT size="4"&gt;𒉽&lt;/FONT&gt; after&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="4"&gt;&lt;SPAN title="cuneiform text"&gt;𒑖&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;SPAN&gt;&lt;EM&gt;&amp;nbsp;except before&amp;nbsp;&lt;FONT size="4"&gt;𒄬&lt;/FONT&gt;.&amp;nbsp; What do they teach you in scribe school, these days?&lt;/EM&gt;&lt;/SPAN&gt;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 17:52:08 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045086#M219749</guid>
      <dc:creator>StuartBruff</dc:creator>
      <dc:date>2025-11-26T17:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045088#M219751</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I look forward to AIs putting in Mathcad Enhancement Proposals to add Multi-Dimensional Arrays (&lt;EM&gt;with the MEP transcribed from Klingon into classical early-dynastic Sumerian cuneiform&lt;/EM&gt;) -&lt;/P&gt;
&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Absolutely! AI makes up for everything PTC messed up and implements features that weren't even available in real Mathcad ...&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 18:09:56 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045088#M219751</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-11-26T18:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045101#M219755</link>
      <description>&lt;P&gt;Well, I hope AI has better luck than I did trying to sneak the empty array in via the backdoor (&lt;EM&gt;Python scripting ... it didn't work, of course, but it was worth a try - there might have been some undocumented feature&lt;/EM&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stuart&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 19:42:24 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045101#M219755</guid>
      <dc:creator>StuartBruff</dc:creator>
      <dc:date>2025-11-26T19:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045214#M219763</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;See enclosed file.&lt;/P&gt;
&lt;P&gt;Screenshots are extra &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 13:25:40 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045214#M219763</guid>
      <dc:creator>terryhendicott</dc:creator>
      <dc:date>2025-11-27T13:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045272#M219772</link>
      <description>&lt;P&gt;I hesitated to do the OP's homework before he showed a little initiative himself.&lt;BR /&gt;But okay, the dance has begun, so here are my two cents. A screenshot was asked for, right? &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Werner_E_0-1764301562498.png" style="width: 1063px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/131723iF045901B3A0C0CF3/image-dimensions/1063x1556?v=v2" width="1063" height="1556" role="button" title="Werner_E_0-1764301562498.png" alt="Werner_E_0-1764301562498.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 03:46:17 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045272#M219772</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-11-28T03:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045584#M219790</link>
      <description>&lt;P&gt;I thought I'd have a go at this using Prime Express.&amp;nbsp; The result can be seen below.&amp;nbsp; Although the method seems quite clever, it's as clear as mud!&amp;nbsp; My mantra was always, "clear is better than clever".&amp;nbsp; Seems I'm forced to forgo that now I only have Express!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alan&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MCQueue.png" style="width: 999px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/131786i2B761333FEBDBDE2/image-size/large?v=v2&amp;amp;px=999" role="button" title="MCQueue.png" alt="MCQueue.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 15:59:36 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1045584#M219790</guid>
      <dc:creator>AlanStevens</dc:creator>
      <dc:date>2025-12-01T15:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1046051#M219827</link>
      <description>&lt;P&gt;Thanks bro for taking the time to do the assignment. I found a way to do it and already submitted the assignment, I had to write it for a long time.&lt;BR /&gt;I was just wondering if it was possible to do it quickly through Mathcad.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 20:44:14 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1046051#M219827</guid>
      <dc:creator>DD_14416900</dc:creator>
      <dc:date>2025-12-03T20:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1046052#M219828</link>
      <description>&lt;P&gt;Thank you for showing me how to quickly do the task using Mathcad. It was informative.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 20:50:25 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1046052#M219828</guid>
      <dc:creator>DD_14416900</dc:creator>
      <dc:date>2025-12-03T20:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Solve the problem using the Monte Carlo method</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1046053#M219829</link>
      <description>&lt;P&gt;Thank you for the file and for your time, this is the first time I've seen such a quick response.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 20:54:14 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Solve-the-problem-using-the-Monte-Carlo-method/m-p/1046053#M219829</guid>
      <dc:creator>DD_14416900</dc:creator>
      <dc:date>2025-12-03T20:54:14Z</dc:date>
    </item>
  </channel>
</rss>

