User John the Statistician - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T12:17:29Zhttp://stackoverflow.com/feeds/user/279http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/9650/lisp-scheme-interpreter-without-emacs/9679#96795Answer by John the Statistician for Lisp/Scheme interpreter without Emacs?John the Statistician2008-08-13T11:55:48Z2009-10-21T13:43:52Z<p>It looks like Steel Bank Common Lisp (SBCL) also caters to what you want:</p>
<p><a href="http://www.sbcl.org/manual/Shebang-Scripts.html#Shebang-Scripts" rel="nofollow">http://www.sbcl.org/manual/Shebang-Scripts.html#Shebang-Scripts</a></p>
<p>SBCL is both top rate and open source.</p>
http://stackoverflow.com/questions/1134732/does-mysqls-alter-table-add-primary-key-also-cluster-the-data1Does MySQL's ALTER TABLE ADD PRIMARY KEY also cluster the data?John the Statistician2009-07-15T23:58:27Z2009-07-16T00:04:54Z
<p>Does MySQL's ALTER TABLE ADD PRIMARY KEY also cluster the data, or do I need to create the table from scratch with the primary key to get the clustering? </p>
http://stackoverflow.com/questions/1101487/setting-up-a-working-common-lisp-environment-for-the-aspiring-lisp-newbie/1101514#11015142Answer by John the Statistician for Setting up a working Common Lisp environment for the aspiring Lisp newbieJohn the Statistician2009-07-09T02:21:12Z2009-07-09T02:21:12Z<p>Did you try <a href="http://gigamonkeys.com/book/lispbox/" rel="nofollow">Lispbox</a>?</p>
http://stackoverflow.com/questions/135330/mathematica-downvalue-lhs1Mathematica Downvalue LhsJohn the Statistician2008-09-25T19:10:20Z2009-02-20T18:37:50Z
<p>Does anybody know if there is a built-in function in Mathematica for getting the lhs of downvalue rules (without any holding)? I know how to write the code to do it, but it seems basic enough for a built-in</p>
<p>For example:
a[1]=2;
a[2]=3;
BuiltInIDoNotKnowOf[a] returns {1,2}</p>
http://stackoverflow.com/questions/491738/how-do-you-calculate-the-average-of-a-set-of-angles/491843#4918431Answer by John the Statistician for How do you calculate the average of a set of angles?John the Statistician2009-01-29T14:41:35Z2009-01-29T14:41:35Z<p>Here's an idea: build the average iteratively by always calculating the average of the angles that are closest together, keeping a weight. </p>
<p>Another idea: find the largest gap between the given angles. Find the point that bisects it, and then pick the opposite point on the circle as the reference zero to calculate the average from. </p>
http://stackoverflow.com/questions/51593/apache-xml-rpc-exception-handling1Apache XML-RPC Exception HandlingJohn the Statistician2008-09-09T10:59:41Z2008-12-28T02:39:50Z
<p>What is the easiest way to extract the original exception from an exception returned via Apache's implementation of XML-RPC?</p>
http://stackoverflow.com/questions/51593/apache-xml-rpc-exception-handling/56631#566312Answer by John the Statistician for Apache XML-RPC Exception HandlingJohn the Statistician2008-09-11T14:09:05Z2008-12-28T02:39:50Z<p>It turns out that getting the cause exception from the Apache exception is the right one. </p>
<pre><code>} catch (XmlRpcException rpce) {
Throwable cause = rpce.getCause();
if(cause != null) {
if(cause instanceof ExceptionYouCanHandleException) {
handler(cause);
}
else { throw(cause); }
}
else { throw(rpce); }
}
</code></pre>
http://stackoverflow.com/questions/383433/what-are-some-good-books-on-the-theory-of-probability/383586#3835862Answer by John the Statistician for What are some good books on the theory of probability?John the Statistician2008-12-20T18:40:15Z2008-12-20T18:40:15Z<p>You might enjoy the <a href="http://rads.stackoverflow.com/amzn/click/0062731025" rel="nofollow">cartoon guide to statistics</a> as a friendly introduction. I also find <a href="http://www.cscs.umich.edu/~crshalizi/prob-notes/srl.pdf" rel="nofollow">these review notes</a> rather nice.</p>
http://stackoverflow.com/questions/241032/what-are-some-practical-applications-for-a-single-layer-perceptron/282423#2824234Answer by John the Statistician for What are some practical applications for a single layer perceptron?John the Statistician2008-11-11T22:54:58Z2008-12-11T00:52:17Z<p>You can actually do an incredible amount with just a perceptron. For example, many of the theoretical weaknesses of perceptrons can be overcome by moving to a richer feature representation of the data. The most standard way to do this is through kernels. Once you do this, you can then solve many different learning problems through reductions that transform these other problems into binary classification. </p>
<p>One major algorithm is <a href="http://l2r.cs.uiuc.edu/~danr/snow.html" rel="nofollow">SNOW</a>, which is used by Dan Roth in natural language processing quite heavily</p>
<p>Lecture notes on the use of kernels in the perceptron algorithm can be found here: <a href="http://l2r.cs.uiuc.edu/~danr/Teaching/CS446-08/Lectures/04-LecOnline-P3.pdf" rel="nofollow">http://l2r.cs.uiuc.edu/~danr/Teaching/CS446-08/Lectures/04-LecOnline-P3.pdf</a> </p>
<p>The rest of the notes on perceptron and winnow are handy as well: <a href="http://l2r.cs.uiuc.edu/~danr/Teaching/CS446-08/lectures.html" rel="nofollow">http://l2r.cs.uiuc.edu/~danr/Teaching/CS446-08/lectures.html</a> </p>
<p>A further discussion of kernel perceptrons can be found in this paper: <a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.48.8200" rel="nofollow">http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.48.8200</a></p>
<p>John Langford (not me, by the way) has done a lot of work in the reductions I mentioned: <a href="http://hunch.net/~jl/projects/reductions/reductions.html" rel="nofollow">http://hunch.net/~jl/projects/reductions/reductions.html</a> </p>
http://stackoverflow.com/questions/352670/weighted-random-selection-with-and-without-replacement/353576#3535762Answer by John the Statistician for Weighted random selection with and without replacementJohn the Statistician2008-12-09T17:27:01Z2008-12-10T13:00:15Z<p>One of the fastest ways to make many with replacement samples from an unchanging list is the alias method. The core intuition is that we can create a set of equal-sized bins for the weighted list that can be indexed very efficiently through bit operations, to avoid a binary search. It will turn out that, done correctly, we will need to only store two items from the original list per bin, and thus can represent the split with a single percentage.</p>
<p>Let's us take the example of five equally weighted choices, (a:1, b:1, c:1, d:1, e:1)</p>
<p>To create the alias lookup:</p>
<ol>
<li><p>Normalize the weights such that they sum to 1. (a:0.2 b:0.2 c:0.2 d:0.2 e:0.2) This is the probability of choosing each weight.</p></li>
<li><p>Find the smallest power of 2 greater than or equal to the number of variables, and create this number of partitions, |p|. Each partition represents a probability mass of 1/|p|. In this case, we create 8 partitions, each able to contain 0.125.</p></li>
<li><p>Take the variable with the least remaining weight, and place as much of it's mass as possible in an empty partition. In this example, we see that 'a' fills the first partition. (p1{a|null,1.0},p2,p3,p4,p5,p6,p7,p8) with (a:0.075, b:0.2 c:0.2 d:0.2 e:0.2)</p></li>
<li><p>If the partition is not filled, take the variable with the most weight, and fill the partition with that variable. </p></li>
</ol>
<p>Repeat steps 3 and 4, until none of the weight from the original partition need be assigned to the list.</p>
<p>For example, if we run another iteration of 3 and 4, we see </p>
<p>(p1{a|null,1.0},p2{a|b,0.6},p3,p4,p5,p6,p7,p8) with (a:0.075, b:0.15 c:0.2 d:0.2 e:0.2) left to be assigned</p>
<p>At runtime:</p>
<ol>
<li><p>Get a U(0,1) random number, say binary 0.001100000</p></li>
<li><p>bitshift it lg2(p), finding the index partition. Thus, we shift it three, yielding 001.1, or position 1, and thus partition 2.</p></li>
<li><p>If the partition is split, use the decimal portion of the shifted random number to decide the split. In this case, the value is 0.5, and 0.5<0.6, so return a.</p></li>
</ol>
<p><a href="http://prxq.wordpress.com/2006/04/17/the-alias-method/" rel="nofollow">Here is some code and another explanation</a>, but unfortunately it doesn't use the bitshifting technique, nor have I actually verified it.</p>
http://stackoverflow.com/questions/348958/algorithms-recognizing-physical-address-on-a-webpage/349300#3493005Answer by John the Statistician for Algorithms recognizing physical address on a webpageJohn the Statistician2008-12-08T11:59:09Z2008-12-08T13:18:39Z<p>A named-entity extraction framework such as <a href="http://gate.ac.uk/" rel="nofollow">GATE</a> has at least tackled the <a href="http://gate.ac.uk/ie/index.html" rel="nofollow">information extraction problem</a> for locations, assisted by a gazetteer of known places to help resolve common issues. Unless the pages were machine generated from a common source, you're going to find regular expressions a bit weak for the job.</p>
http://stackoverflow.com/questions/41807/best-functional-programming-language-to-learn-coming-from-mathematica/135364#1353643Answer by John the Statistician for Best (functional?) programming language to learn coming from MathematicaJohn the Statistician2008-09-25T19:16:51Z2008-12-07T04:37:22Z<p>If you want to pick something rather close to Mathematica, I'd say Lisp/Scheme are really good, because the Head structure of Mathematica corresponds fairly closely to the lisp scheme; Plus[1,2] becomes (+ 1 2), so the head/arguments structure is really the same. Plus, you can learn about macros, which is like Mathematica's Hold functions on crack.</p>
<p>If you love the rule functionality of Mathematica, then an equational rewrite language such as Maude might be good to look at.</p>
http://stackoverflow.com/questions/340376/can-i-calculate-the-average-of-these-numbers/340387#34038714Answer by John the Statistician for Can i calculate the average of these numbers?John the Statistician2008-12-04T12:13:41Z2008-12-04T12:18:51Z<p>I like to store the sum and the count. It avoids an extra multiply each time.</p>
<pre><code>current_sum += input;
current_count++;
current_average = current_sum/current_count;
</code></pre>
http://stackoverflow.com/questions/281177/commenting-code-that-is-removed/333803#3338031Answer by John the Statistician for Commenting code that is removed?John the Statistician2008-12-02T12:24:22Z2008-12-02T12:24:22Z<p>If you are in the middle of major changes, and need to make a fix to existing functionality, commenting out the future code is a reasonable thing to do, provided you remark that this is future functionality, at least until we have futures friendly source control systems. </p>
http://stackoverflow.com/questions/332722/artificial-neural-network-question/332762#3327623Answer by John the Statistician for Artificial Neural Network QuestionJohn the Statistician2008-12-02T01:25:45Z2008-12-02T01:25:45Z<p>When you have a hidden layer is that you are creating a combined feature of the input. So, is the problem better tackled by more features of the existing input, or through higher-order features that come from combining existing features? This is the trade-off for a standard feed-forward network. </p>
<p>You have a theoretical reassurance that any function can be represented by a neural network with two hidden layers and non-linear activation. </p>
<p>Also, consider using additional resources for boosting, instead of adding more nodes, if you're not certain of the appropriate topology. </p>
http://stackoverflow.com/questions/212900/advantages-of-antlr-versus-say-lex-yacc-bison/332753#3327534Answer by John the Statistician for Advantages of Antlr (versus say, lex/yacc/bison)John the Statistician2008-12-02T01:19:31Z2008-12-02T01:19:31Z<p>Another advantage of ANTRL is that you can use <a href="http://www.antlr.org/works/index.html" rel="nofollow">ANTLRWORKS</a>, although I can't say that this is a strict advantage, as there may be similar tools for other generators as well.</p>
http://stackoverflow.com/questions/305046/current-hot-topics-in-parallel-programming/328415#3284150Answer by John the Statistician for Current "hot" topics in parallel programming?John the Statistician2008-11-30T03:56:41Z2008-11-30T03:56:41Z<p>Parallelism friendly common-application features. Right now, parallelism has been heavily focused on scientific computing and programming languages, but not so much on consumer applications or consumer-application friendly features/data structures/design patterns, and these will be very important in a multi-core world. </p>
http://stackoverflow.com/questions/296513/graduate-level-degree-for-simulation-statistics-prediction/328410#3284101Answer by John the Statistician for Graduate Level Degree for Simulation/Statistics/Prediction?John the Statistician2008-11-30T03:52:56Z2008-11-30T03:52:56Z<p>There's a wide range of possible opportunities here. Let me add the following choices:</p>
<ul>
<li>Physics with a focus on complex networks. This has applications in biology, epidemiology, sociology, finance, and computer science.</li>
<li>A good machine learning program, with statistics, data mining, text analysis, and computational learning theory. </li>
<li>Industrial engineering/operations research, with simulation, reliability, and process control.</li>
</ul>
<p>I'd be happy to talk further about this, please put questions in comments.</p>
http://stackoverflow.com/questions/327544/strange-floating-point-behaviour-in-a-java-program/327556#32755611Answer by John the Statistician for Strange floating-point behaviour in a Java programJohn the Statistician2008-11-29T13:52:24Z2008-11-29T13:52:24Z<p>See also "<a href="http://docs.sun.com/source/806-3568/ncg_goldberg.html" rel="nofollow">What Every Computer Scientist Should Know About Floating Point</a>"</p>
http://stackoverflow.com/questions/318005/how-much-time-should-you-spend-on-a-feature/320524#3205240Answer by John the Statistician for how much time should you spend on a feature?John the Statistician2008-11-26T12:25:28Z2008-11-26T12:25:28Z<p>Time isn't necessarily the only consideration; be aware that there are <a href="http://www.joelonsoftware.com/articles/fog0000000356.html" rel="nofollow">other, fuzzier factors that come into play</a> </p>
http://stackoverflow.com/questions/305279/what-is-the-relationship-between-bayesian-and-neural-networks/319657#3196574Answer by John the Statistician for What is the relationship between bayesian and neural networks?John the Statistician2008-11-26T03:22:23Z2008-11-26T03:22:23Z<p>Bayesian networks represent independence (and dependence) relationships between variables. Thus, the links represent conditional relationships in the probabilistic sense. Neural networks, generally speaking, have no such direct interpretation, and in fact the intermediate nodes of most neural networks are discovered features, instead of having any predicate associated with them in their own right. </p>
http://stackoverflow.com/questions/312785/why-is-using-a-class-as-a-struct-bad-practice-in-java/312791#3127910Answer by John the Statistician for Why is using a class as a struct bad practice in Java?John the Statistician2008-11-23T18:23:23Z2008-11-23T18:23:23Z<p>In general, you'll want to isolate the knowledge needed to operate upon a class into the class itself. If you have a class like this, either it is used in multiple places, and thus can take on some of the functionality in both of those places, or it is in a single place, and should be an inner class. If it is used in multiple ways, but in completely different ways, such that there is no shared functionality, having it be a single class is misleading, indicating a shared functionality where there is none. </p>
<p>However, there are often specific reasons for where these general rules may or may not apply, so it depends on what your class was supposed to represent.</p>
http://stackoverflow.com/questions/312627/non-mathematical-description-of-neural-networks/312646#3126461Answer by John the Statistician for Non-mathematical Description of Neural NetworksJohn the Statistician2008-11-23T15:50:31Z2008-11-23T16:33:23Z<p>Unfortunately, I don't know if there's a good single "programmers source" that will give you all of the concepts. I liked <a href="http://rads.stackoverflow.com/amzn/click/0471351679" rel="nofollow">Neural and Adaptive Systems: Fundamentals through Simulations</a>. </p>
<p>The best way to have a "programmer's understanding" of neural networks is not so much by examining the code, but in the problem and the correct results. So, if you don't want to look at math, I recommend you look at a given problem. For example, consider the XOR problem as an example of why you need non-linear activation functions, look at the number of variables and their possible values for understanding why a neural network needs to be of a certain size and toplogy to be effective, and split your data into train/test regimes and do studies to see why overfitting is dangerous. Examine the code with the data.</p>
<p>I also recommend not getting too hung up, but reading further. Certain practices in feed-forward networks become more clear once you see their generalization in recurrent and constructive neural networks. I also recommend going wider: Bayesian networks, fuzzy cognitive maps, SOM, Boltzman machines, simulated annealing, and reinforcement learning all have intuitions.</p>
<p>Does this go towards answering your question?</p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/309532#3095320Answer by John the Statistician for Explaining computational complexity theoryJohn the Statistician2008-11-21T17:19:48Z2008-11-21T17:19:48Z<p>Depending on how long you have, maybe it would be best to start at DFA, NDFA, and then show that they are equivalent. Then they understand ND vs. D, and will understand regular expressions a lot better as a nice side effect.</p>
http://stackoverflow.com/questions/309160/what-programming-language-should-be-taught-in-computer-science-101/309241#3092412Answer by John the Statistician for What programming language should be taught in Computer Science 101?John the Statistician2008-11-21T16:04:47Z2008-11-21T16:04:47Z<p>I would be very interested to see two very different compatible languages used together, say Java and Clojure. If you want to emphasize that algorithms don't change between general-purpose languages, and yet different languages are appropriate for different jobs, that would be a good way to start. </p>
http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/301629#3016292Answer by John the Statistician for What is the most important thing you weren't taught in school?John the Statistician2008-11-19T11:31:27Z2008-11-19T11:31:27Z<p>Nobody will tell you that as an adult you will have a choice on working at things that make a positive difference or just taking any opportunity that puts food in your mouth, and the ethics of the goals your workplace sets and the ethics of the people around you should be a fundamental criteria, because otherwise you will find your work put to ends you don't want to admit. </p>
http://stackoverflow.com/questions/300907/sort-numbers-by-sum-algorithm/300917#3009170Answer by John the Statistician for Sort numbers by sum algorithmJohn the Statistician2008-11-19T03:33:35Z2008-11-19T03:33:35Z<p>You are charged by the number of swaps, not by the number of comparisons. Nor did you mention being charged for keeping other records.</p>
http://stackoverflow.com/questions/300854/alternative-entropy-sources/300914#3009142Answer by John the Statistician for Alternative Entropy SourcesJohn the Statistician2008-11-19T03:29:16Z2008-11-19T03:29:16Z<p>Modern RNGs are both checked against correlations in nearby seeds and run several hundred iterations after the seeding. So, the unfortunately boring but true answer is that it really doesn't matter very much. </p>
<p>Generally speaking, using random physical processes have to be checked that they conform to a uniform distribution and are otherwise detrended. </p>
<p><a href="http://stackoverflow.com/questions/37702/true-random-number-generator#37862">In my opinion, it's often better to use a very well understood pseudo-random number generator.</a> </p>
http://stackoverflow.com/questions/293874/program-to-simulate-vehicles-at-an-intersection-using-queues/293890#2938901Answer by John the Statistician for Program to simulate vehicles at an intersection using queuesJohn the Statistician2008-11-16T13:55:43Z2008-11-16T13:55:43Z<p>Some useful behaviors to monitor will include mean, max, and std. dev. of the number of cars waiting at each light. </p>
http://stackoverflow.com/questions/238277/what-are-some-good-resources-for-programming-artificial-intelligence/269899#2698991Answer by John the Statistician for What are some good resources for programming Artificial Intelligence?John the Statistician2008-11-06T19:10:37Z2008-11-06T19:10:37Z<p>I enjoyed "Neural and Adaptive Systems: Fundamentals Through Simulation"</p>
http://stackoverflow.com/questions/9650/lisp-scheme-interpreter-without-emacs/9679#9679Comment by John the Statistician on Lisp/Scheme interpreter without Emacs?John the Statistician2009-10-21T13:44:14Z2009-10-21T13:44:14ZThanks, hopefully fixed.http://stackoverflow.com/questions/3553/one-piece-of-advice/7749#7749Comment by John the Statistician on One piece of adviceJohn the Statistician2009-05-11T12:38:45Z2009-05-11T12:38:45ZThat's a great examplehttp://stackoverflow.com/questions/491738/how-do-you-calculate-the-average-of-a-set-of-angles/491843#491843Comment by John the Statistician on How do you calculate the average of a set of angles?John the Statistician2009-02-19T12:57:24Z2009-02-19T12:57:24ZI don't recommend my answer, but instead starblue's highly ranked answer. The key observation there is to think of the center of the compass as the 0,0 point.http://stackoverflow.com/questions/447783/base-3-combinatoricsComment by John the Statistician on Base 3 CombinatoricsJohn the Statistician2009-01-15T18:07:29Z2009-01-15T18:07:29ZCould this get retitled to something more descriptive?http://stackoverflow.com/questions/65487/how-do-you-categorize-based-on-text-contentComment by John the Statistician on How Do You Categorize Based On Text Content?John the Statistician2008-12-11T12:27:08Z2008-12-11T12:27:08ZThe original posting did not specify if the author already had categories, and wanted to classify, or if they did not, and needed to discover them.http://stackoverflow.com/questions/352670/weighted-random-selection-with-and-without-replacementComment by John the Statistician on Weighted random selection with and without replacementJohn the Statistician2008-12-10T01:03:12Z2008-12-10T01:03:12ZI've improved my answer, I hope that helps.http://stackoverflow.com/questions/352670/weighted-random-selection-with-and-without-replacement/353576#353576Comment by John the Statistician on Weighted random selection with and without replacementJohn the Statistician2008-12-09T23:39:34Z2008-12-09T23:39:34ZYes, I was at work, and I wanted to hammer it out. I'll expand on this in the near future. Glad you found it helpful, even so. :)http://stackoverflow.com/questions/348958/algorithms-recognizing-physical-address-on-a-webpageComment by John the Statistician on Algorithms recognizing physical address on a webpageJohn the Statistician2008-12-09T12:53:31Z2008-12-09T12:53:31ZAh, very good, thanks :-)http://stackoverflow.com/questions/348958/algorithms-recognizing-physical-address-on-a-webpage/349009#349009Comment by John the Statistician on Algorithms recognizing physical address on a webpageJohn the Statistician2008-12-08T12:02:27Z2008-12-08T12:02:27ZYou should edit the original post.http://stackoverflow.com/questions/348958/algorithms-recognizing-physical-address-on-a-webpageComment by John the Statistician on Algorithms recognizing physical address on a webpageJohn the Statistician2008-12-08T12:00:30Z2008-12-08T12:00:30ZSomebody edit this to say location or physical address, since this is still pretty ambiguous.http://stackoverflow.com/questions/340376/can-i-calculate-the-average-of-these-numbers/340387#340387Comment by John the Statistician on Can i calculate the average of these numbers?John the Statistician2008-12-04T12:26:07Z2008-12-04T12:26:07ZExactly; in general you can calculate the nth moment with sums of powers. For example, you can calculate the std.dev. with sums of squares, sums, and count. However, if you need a streaming std. dev. don't do that, do this: <a href="http://www.cs.berkeley.edu/~mhoemmen/cs194-fall2007/Tutorials/variance.pdf" rel="nofollow">cs.berkeley.edu/~mhoemmen/cs194-fall2007/…</a>http://stackoverflow.com/questions/340376/can-i-calculate-the-average-of-these-numbers/340389#340389Comment by John the Statistician on Can i calculate the average of these numbers?John the Statistician2008-12-04T12:21:12Z2008-12-04T12:21:12ZNo worries, it's an easy mistake to makehttp://stackoverflow.com/questions/340376/can-i-calculate-the-average-of-these-numbers/340389#340389Comment by John the Statistician on Can i calculate the average of these numbers?John the Statistician2008-12-04T12:17:13Z2008-12-04T12:17:13ZShouldn't that be currentScore = (currentScore * currentCount + 4.5) / (currentCount + 1)
http://stackoverflow.com/questions/312627/non-mathematical-description-of-neural-networks/312646#312646Comment by John the Statistician on Non-mathematical Description of Neural NetworksJohn the Statistician2008-12-03T15:43:02Z2008-12-03T15:43:02ZThere is certainly math there, there's no denying it; however, I thought it also had reasonable explanation, and it's nice to have an implementation to try things on. http://stackoverflow.com/questions/327544/strange-floating-point-behaviour-in-a-java-program/327556#327556Comment by John the Statistician on Strange floating-point behaviour in a Java programJohn the Statistician2008-11-29T13:58:08Z2008-11-29T13:58:08ZI concur. On the other hand, it's nice for self-taught practitioners and the overachievers to know where it is, in case they are facing numeric issues.