<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://whystartat.xyz/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=David+Eppstein</id>
	<title>Why start at x, y, z - User contributions [en-gb]</title>
	<link rel="self" type="application/atom+xml" href="https://whystartat.xyz/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=David+Eppstein"/>
	<link rel="alternate" type="text/html" href="https://whystartat.xyz/wiki/Special:Contributions/David_Eppstein"/>
	<updated>2026-04-14T21:17:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.0</generator>
	<entry>
		<id>https://whystartat.xyz/index.php?title=Parentheses_are_overused&amp;diff=141</id>
		<title>Parentheses are overused</title>
		<link rel="alternate" type="text/html" href="https://whystartat.xyz/index.php?title=Parentheses_are_overused&amp;diff=141"/>
		<updated>2021-07-02T19:28:28Z</updated>

		<summary type="html">&lt;p&gt;David Eppstein: nvm already above&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Ambiguities]]&lt;br /&gt;
&lt;br /&gt;
Parentheses are used to represent all sorts of operations and objects, many of which conflict with each other.&lt;br /&gt;
&lt;br /&gt;
Grouping parts of an expression: \( (x+1)(x+2) \)&lt;br /&gt;
&lt;br /&gt;
Argument of a function: \(f(x)\) is &amp;quot;\(f\) applied to \(x\)&amp;quot;. ([[There is no function application symbol]])&lt;br /&gt;
&lt;br /&gt;
Greatest common divisor: \((a,b) = \gcd(a,b)\) &lt;br /&gt;
&lt;br /&gt;
Counting combinations: \( {n \choose k} = \frac{n!}{k!(n-k)!} \)&lt;br /&gt;
&lt;br /&gt;
Repeated differentiation : \( f^{(n)}(x) = \frac{\mathrm{d}^nf}{\mathrm{d}x^n} \)&lt;br /&gt;
&lt;br /&gt;
Vectors or one-column matrices: \( \begin{pmatrix} a \\ b \end{pmatrix} \)&lt;br /&gt;
&lt;br /&gt;
Ideals: \((2)\) is the ideal generated by 2, \((a,b,c)\) is the ideal generated by \(\{a,b,c\}\).&lt;/div&gt;</summary>
		<author><name>David Eppstein</name></author>
	</entry>
	<entry>
		<id>https://whystartat.xyz/index.php?title=Parentheses_are_overused&amp;diff=140</id>
		<title>Parentheses are overused</title>
		<link rel="alternate" type="text/html" href="https://whystartat.xyz/index.php?title=Parentheses_are_overused&amp;diff=140"/>
		<updated>2021-07-02T19:28:12Z</updated>

		<summary type="html">&lt;p&gt;David Eppstein: or binomial coefficients&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Ambiguities]]&lt;br /&gt;
&lt;br /&gt;
Parentheses are used to represent all sorts of operations and objects, many of which conflict with each other.&lt;br /&gt;
&lt;br /&gt;
Grouping parts of an expression: \( (x+1)(x+2) \)&lt;br /&gt;
&lt;br /&gt;
Argument of a function: \(f(x)\) is &amp;quot;\(f\) applied to \(x\)&amp;quot;. ([[There is no function application symbol]])&lt;br /&gt;
&lt;br /&gt;
Greatest common divisor: \((a,b) = \gcd(a,b)\) &lt;br /&gt;
&lt;br /&gt;
Counting combinations: \( {n \choose k} = \frac{n!}{k!(n-k)!} \)&lt;br /&gt;
&lt;br /&gt;
Repeated differentiation : \( f^{(n)}(x) = \frac{\mathrm{d}^nf}{\mathrm{d}x^n} \)&lt;br /&gt;
&lt;br /&gt;
Vectors or one-column matrices or binomial coefficients: \( \begin{pmatrix} a \\ b \end{pmatrix} \)&lt;br /&gt;
&lt;br /&gt;
Ideals: \((2)\) is the ideal generated by 2, \((a,b,c)\) is the ideal generated by \(\{a,b,c\}\).&lt;/div&gt;</summary>
		<author><name>David Eppstein</name></author>
	</entry>
	<entry>
		<id>https://whystartat.xyz/index.php?title=Big_O_notation&amp;diff=71</id>
		<title>Big O notation</title>
		<link rel="alternate" type="text/html" href="https://whystartat.xyz/index.php?title=Big_O_notation&amp;diff=71"/>
		<updated>2021-06-30T18:02:25Z</updated>

		<summary type="html">&lt;p&gt;David Eppstein: New article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Unpleasantness]]&lt;br /&gt;
&lt;br /&gt;
Big \(O\) notation is commonly written as if it were an equality:&lt;br /&gt;
\[ x^2+7x+53=O(x^2). \]&lt;br /&gt;
It is not an equality: the left hand side describes a function of \(x\), but the right hand side is...something else. In an attempt to make this more meaningful, some authors have resorted to treating \(O\)-notation as defining a set of functions, and using set membership instead of equality:&lt;br /&gt;
\[ x^2+7x+53\in O(x^2). \]&lt;br /&gt;
This does not work either, for expressions like&lt;br /&gt;
\[ x^2+7x+53=x^2+O(x). \]&lt;br /&gt;
&lt;br /&gt;
The real meaning of this type of expression appears to be as a proxy for wrapping the entire expression in quantifiers and replacing the equality by an inequality:&lt;br /&gt;
\[ \exists X\in\mathbb{R}^+\ \exists C\in\mathbb{R}^+\ \forall x\in\mathbb{R}^+\ (x&amp;gt;X \Rightarrow x^2+7x+53\le Cx^2). \]&lt;br /&gt;
&lt;br /&gt;
But even with this interpretation you still have to know, from information beyond the expression, what kind of limiting behavior you are studying: the quantification above describes the limiting behavior as \(x\to\infty\), not as \(x\to 0\).&lt;br /&gt;
&lt;br /&gt;
Maybe the simplest solution is to tell students that &amp;quot;=O&amp;quot; is a special combination of symbols, meaningful only as a combination.&lt;/div&gt;</summary>
		<author><name>David Eppstein</name></author>
	</entry>
	<entry>
		<id>https://whystartat.xyz/index.php?title=Powers_of_trigonometric_functions&amp;diff=70</id>
		<title>Powers of trigonometric functions</title>
		<link rel="alternate" type="text/html" href="https://whystartat.xyz/index.php?title=Powers_of_trigonometric_functions&amp;diff=70"/>
		<updated>2021-06-30T17:44:06Z</updated>

		<summary type="html">&lt;p&gt;David Eppstein: or log&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Ambiguities]]&lt;br /&gt;
[[Category:Inconsistencies]]&lt;br /&gt;
[[Category:Unpleasantness]]&lt;br /&gt;
&lt;br /&gt;
When writing a power of a trigonometric function or logarithm, it&#039;s common to write the power as a superscript before the brackets:&lt;br /&gt;
&lt;br /&gt;
\[ \sin^2(x) = (\sin(x))^2 \]&lt;br /&gt;
&lt;br /&gt;
This conflicts with the conventional notation for inverses and repeated application of functions:&lt;br /&gt;
&lt;br /&gt;
\[ f^2(x) = f(f(x)) \]&lt;br /&gt;
&lt;br /&gt;
\[ y = f^{-1}(x) \implies x = f(y) \]&lt;br /&gt;
&lt;br /&gt;
In his entry on Notation in the Edinburgh Encyclopedia &amp;lt;ref&amp;gt;The Edinburgh Encyclopedia, 1830, pp. 398-399. [https://babel.hathitrust.org/cgi/pt?id=chi.21708663&amp;amp;view=1up&amp;amp;seq=431 Copy on HathiTrust]&amp;lt;/ref&amp;gt;, Charles Babbage is scathing about this convention. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Although a definition can not be false, it may be improper.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>David Eppstein</name></author>
	</entry>
</feed>