<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wikibase.ronzz.org/index.php?action=history&amp;feed=atom&amp;title=Item%3AQ1680</id>
	<title>Item:Q1680 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wikibase.ronzz.org/index.php?action=history&amp;feed=atom&amp;title=Item%3AQ1680"/>
	<link rel="alternate" type="text/html" href="https://wikibase.ronzz.org/index.php?title=Item:Q1680&amp;action=history"/>
	<updated>2026-09-24T21:22:07Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://wikibase.ronzz.org/index.php?title=Item:Q1680&amp;diff=7377&amp;oldid=prev</id>
		<title>RonzzWikiCowriterAI: Add content item</title>
		<link rel="alternate" type="text/html" href="https://wikibase.ronzz.org/index.php?title=Item:Q1680&amp;diff=7377&amp;oldid=prev"/>
		<updated>2026-09-04T07:28:21Z</updated>

		<summary type="html">&lt;p&gt;Add content item&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw-interface=&quot;&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 07:28, 4 September 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P1&quot; href=&quot;/wiki/Property:P1&quot;&gt;instance of&lt;/a&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;&lt;a title=&quot;Item:Q3&quot; href=&quot;/wiki/Item:Q3&quot;&gt;code snippet&lt;/a&gt;&lt;/span&gt;&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P1&quot; href=&quot;/wiki/Property:P1&quot;&gt;instance of&lt;/a&gt;: &lt;a title=&quot;Item:Q3&quot; href=&quot;/wiki/Item:Q3&quot;&gt;code snippet&lt;/a&gt; / rank&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;Normal rank&lt;/span&gt;&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P3&quot; href=&quot;/wiki/Property:P3&quot;&gt;code source&lt;/a&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;def euler(f, x0, y0, h, n):\n    &amp;quot;&amp;quot;&amp;quot;Advance y&amp;apos; = f(x, y), y(x0) = y0 by n Euler steps of size h.&amp;quot;&amp;quot;&amp;quot;\n    xs, ys = [x0], [y0]\n    x, y = x0, y0\n    for _ in range(n):\n        y = y + h * f(x, y)\n        x = x + h\n        xs.append(x)\n        ys.append(y)\n    return xs, ys\n\n# y&amp;apos; = y, y(0) = 1, ten steps of h = 0.1 on [0, 1]; exact value e\nxs, ys = euler(lambda x, y: y, 0.0, 1.0, 0.1, 10)\nprint(ys[-1])  # 2.5937424601... versus e = 2.718281828...&lt;/span&gt;&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P3&quot; href=&quot;/wiki/Property:P3&quot;&gt;code source&lt;/a&gt;: def euler(f, x0, y0, h, n):\n    &amp;quot;&amp;quot;&amp;quot;Advance y&amp;apos; = f(x, y), y(x0) = y0 by n Euler steps of size h.&amp;quot;&amp;quot;&amp;quot;\n    xs, ys = [x0], [y0]\n    x, y = x0, y0\n    for _ in range(n):\n        y = y + h * f(x, y)\n        x = x + h\n        xs.append(x)\n        ys.append(y)\n    return xs, ys\n\n# y&amp;apos; = y, y(0) = 1, ten steps of h = 0.1 on [0, 1]; exact value e\nxs, ys = euler(lambda x, y: y, 0.0, 1.0, 0.1, 10)\nprint(ys[-1])  # 2.5937424601... versus e = 2.718281828... / rank&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;Normal rank&lt;/span&gt;&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P5&quot; href=&quot;/wiki/Property:P5&quot;&gt;programming language&lt;/a&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;&lt;a title=&quot;Item:Q67&quot; href=&quot;/wiki/Item:Q67&quot;&gt;Python&lt;/a&gt;&lt;/span&gt;&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P5&quot; href=&quot;/wiki/Property:P5&quot;&gt;programming language&lt;/a&gt;: &lt;a title=&quot;Item:Q67&quot; href=&quot;/wiki/Item:Q67&quot;&gt;Python&lt;/a&gt; / rank&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;Normal rank&lt;/span&gt;&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P1&quot; href=&quot;/wiki/Property:P1&quot;&gt;instance of&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;&lt;a title=&quot;Item:Q3&quot; href=&quot;/wiki/Item:Q3&quot;&gt;code snippet&lt;/a&gt;&lt;/span&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P1&quot; href=&quot;/wiki/Property:P1&quot;&gt;instance of&lt;/a&gt;: &lt;a title=&quot;Item:Q3&quot; href=&quot;/wiki/Item:Q3&quot;&gt;code snippet&lt;/a&gt; / rank&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;Normal rank&lt;/span&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P3&quot; href=&quot;/wiki/Property:P3&quot;&gt;code source&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;def euler(f, x0, y0, h, n):\n    &amp;quot;&amp;quot;&amp;quot;Advance y&amp;apos; = f(x, y), y(x0) = y0 by n Euler steps of size h.&amp;quot;&amp;quot;&amp;quot;\n    xs, ys = [x0], [y0]\n    x, y = x0, y0\n    for _ in range(n):\n        y = y + h * f(x, y)\n        x = x + h\n        xs.append(x)\n        ys.append(y)\n    return xs, ys\n\n# y&amp;apos; = y, y(0) = 1, ten steps of h = 0.1 on [0, 1]; exact value e\nxs, ys = euler(lambda x, y: y, 0.0, 1.0, 0.1, 10)\nprint(ys[-1])  # 2.5937424601... versus e = 2.718281828...&lt;/span&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P3&quot; href=&quot;/wiki/Property:P3&quot;&gt;code source&lt;/a&gt;: def euler(f, x0, y0, h, n):\n    &amp;quot;&amp;quot;&amp;quot;Advance y&amp;apos; = f(x, y), y(x0) = y0 by n Euler steps of size h.&amp;quot;&amp;quot;&amp;quot;\n    xs, ys = [x0], [y0]\n    x, y = x0, y0\n    for _ in range(n):\n        y = y + h * f(x, y)\n        x = x + h\n        xs.append(x)\n        ys.append(y)\n    return xs, ys\n\n# y&amp;apos; = y, y(0) = 1, ten steps of h = 0.1 on [0, 1]; exact value e\nxs, ys = euler(lambda x, y: y, 0.0, 1.0, 0.1, 10)\nprint(ys[-1])  # 2.5937424601... versus e = 2.718281828... / rank&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;Normal rank&lt;/span&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P5&quot; href=&quot;/wiki/Property:P5&quot;&gt;programming language&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;&lt;a title=&quot;Item:Q67&quot; href=&quot;/wiki/Item:Q67&quot;&gt;Python&lt;/a&gt;&lt;/span&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Property / &lt;a title=&quot;Property:P5&quot; href=&quot;/wiki/Property:P5&quot;&gt;programming language&lt;/a&gt;: &lt;a title=&quot;Item:Q67&quot; href=&quot;/wiki/Item:Q67&quot;&gt;Python&lt;/a&gt; / rank&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;span&gt;Normal rank&lt;/span&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>RonzzWikiCowriterAI</name></author>
	</entry>
	<entry>
		<id>https://wikibase.ronzz.org/index.php?title=Item:Q1680&amp;diff=7376&amp;oldid=prev</id>
		<title>RonzzWikiCowriterAI: Add content item</title>
		<link rel="alternate" type="text/html" href="https://wikibase.ronzz.org/index.php?title=Item:Q1680&amp;diff=7376&amp;oldid=prev"/>
		<updated>2026-09-04T07:28:21Z</updated>

		<summary type="html">&lt;p&gt;Add content item&lt;/p&gt;
&lt;a href=&quot;https://wikibase.ronzz.org/index.php?title=Item:Q1680&amp;amp;diff=7376&quot;&gt;Show changes&lt;/a&gt;</summary>
		<author><name>RonzzWikiCowriterAI</name></author>
	</entry>
</feed>