User talk:David Eppstein/2006

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

Welcome

Hi there, and welcome to wikipedia! Its nice to see another anteater working on the project. As I see no one has officially welcomed you, I'll give you the official welcome message. Ready?


Welcome!

Hello, David Eppstein, and welcome to Wikipedia! Thank you for your contributions. I hope you like the place and decide to stay. Here are some pages that you might find helpful:

I hope you enjoy editing here and being a Wikipedian! Please sign your name on talk pages using four tildes (~~~~); this will automatically produce your name and the date. If you need help, check out Wikipedia:Questions, ask me on my talk page, or place {{helpme}} on your talk page and someone will show up shortly to answer your questions. Again, welcome! 

Wasn't that great? Anyway, if you need anything drop me a line! --best, kevin [kzollman][talk] 17:20, 22 August 2006 (UTC)

Thanks for the welcome, and thanks for the references – they look very helpful. I'm unsure of a point of etiquette, though: is responding here appropriate or am I expected to respond to user talk with a message back on your own page?
David Eppstein 17:58, 22 August 2006 (UTC)
Actually, there really isn't a generally accepted practice. I think the small majority does the later, responds on the other's talk page rather than their own. But a reasonable number of people do the former. Its really up to you. --best, kevin [kzollman][talk] 18:56, 22 August 2006 (UTC)
People do both, but the math people, I think, generally try to keep the discussion in one place, whether this be an article talk page, user talk page, or AFD discussion page. One common thing is to have a notice at the top of your talk page, stating what your preference is. That way people will know whether they need to watch your talk page or not. As an example, you can take a look at my talk page. --C S (Talk) 03:34, 10 September 2006 (UTC)
Wikipedia is a maze of little twisting passages, all different. Hidden throughout are items both helpful and mysterious. One of these is the “+” tab at the top of this page. Clicking on it adds a new section with header at the bottom. Hovering over it should reveal a shortcut key. When editing, the row of tabs above the edit box contains one labelled with a scrawl. Clicking it inserts the automagical four tilde signature, preceeded by two dashes. Hovering should bring up a description of each button. Below the box are a large number of auto-insert characters, some of which are mathematical. For a larger repertoire, visit my user page, where you will find (among other things) a link to a table of many more mathematical characters to cut and paste. To see them all you will need suitable fonts, such as Code2000, or the eagerly-awaited STIX fonts.
Much as I hope Wikipedia turns out well, I think it only fair to warn you of hazards. The most serious of these for you may be that experts can find it rough going; see this critique, for example. However, the conversations at Wikipedia talk:WikiProject Mathematics are a cut above those on a typical talk page, at least for now.
If I can be of any help in matters political or procedural or technical, please don’t hesitate to ask. I’ve cited your Geometry Junkyard pages enough times elsewhere that it’s the least I can do in return. --KSmrqT 10:14, 14 September 2006 (UTC)

Redirecting Userpage

Redirecting your userpage to an article about you is highly frowned upon as it confuses people by blurring distinction between namespaces; it also makes it a tad harder for people to contact you. If you don't wish to write anything on your userpage, you can just create a link to the article. You may also want to add the template {{userpage}}.--C S (Talk) 03:10, 2 September 2006 (UTC)

Ok, I'll unredirect and just leave a link instead. Thanks for letting me know.
David Eppstein 04:41, 2 September 2006 (UTC)

Incidence List

Hi, David. I referenced your site in Incidence list because I couldn't find any other ref; yet, in your Adjacency list edit summary you said "it's covered better elsewhere". Can you give me a pointer of where to look? (And a reference in the Adjacency List page would be great.) I'm kind of frustrated by the amout of publications describing "incidence lists" when they are really describing adjacency lists. (Just reply here.) — LazyEditor (talk|contribs) 06:41, 9 September 2006 (UTC)

CLRS (the main cite in Adjacency List) only does the adjacency list itself (making its coverage of flow algorithms problematic) but other algorithms texts do the incidence list version, I think. The one I use for my classes is Goodrich&Tamassia, and though they obscure it with a lot of object-orientation details I'm pretty sure the graph representation they use is essentially the same as the incidence list. I'd want to double check that before adding it as a reference here, though. —David Eppstein 06:49, 9 September 2006 (UTC)
I changed my mind, and added the reference back — my reasoning being that, whether or not I like Goodrich&Tamassia better, my lecture notes are online and their book isn't. I also added some other references, so I'd be interested in hearing whether you think it's better now. —David Eppstein 07:17, 11 September 2006 (UTC)

Thanks, it looks fine to me. I'm just a bit not sure about the definition. What if I have only one of these data structures:

  • struct { LinkedList<int> incidentEdges; } *vertices;
  • struct { int v1; int v2; } *edges;

Is it not an incidence list?

Oh, and a little nit: "One difficulty with the adjacency list structure is that it has no obvious place to store data associated with the edges of a graph". What about simply storing it in each node of the linked lists? — LazyEditor (talk|contribs) 18:14, 11 September 2006 (UTC)

I'm not sure whether to call that an incidence list, but it's a lot less useful to have only one half of the vertex-edge incidence relation. The second half (where you have an array of edge objects but no list of incident edges for each vertex) is essentially what's defined as the mathematical version of the adjacency list at the start of the entry, but then you have to scan the whole structure if you want to find the neighbors of some vertex. And the first half only is even more cumbersome as to find the identity of each neighbor of each vertex you have to scan all other vertices to see which ones link to the same edges.
Re the nit: if it's a directed graph, and you're storing the adjacency list using a linked list as in CLRS (rather than an array as in van Rossum) this works, but then the linked list elements are essentially edge objects so it's just a disguised form of incidence list. If it's an undirected graph it's more problematic because there are two linked list elements per edge and it's not obvious which one to use to store the information.
David Eppstein 18:22, 11 September 2006 (UTC)

Okay, thanks. That seems to explain my encounters with incidence lists which I thought were adjacency lists. — LazyEditor (talk|contribs) 18:02, 14 September 2006 (UTC)

I neglected to mention before that there is an active group on Wikipedia dedicated to improving its mathematics coverage. You may want to add your name to the list of participants: Wikipedia:WikiProject_Mathematics/Participants. There is really no obligation to do this. But this is a way for someone to locate people who can offer their expertise on the different areas, and it also has the benefit of showing the rest of Wikipedia (and the world) that the WikiProject is active and growing.

Additionally, you may eventually find out that you may need help or have concerns about something, in which case Wikipedia_talk:WikiProject_Mathematics is a good place to voice these concerns. Some project members also keep this page updated (with the help of bots): Wikipedia:WikiProject_Mathematics/Current_activity. --C S (Talk) 03:27, 10 September 2006 (UTC)

Thanks. I don't promise to check back on those pages regularly, but I did add myself. —David Eppstein 18:10, 10 September 2006 (UTC)

Welcome to WikiProject CS

Hi! Just noticed that you have signed on as a participant in WikiProject Computer science, and wanted to welcome you to the project. Please stop by the project talk page to see what the other participants have on their minds right now, and to add your own thoughts. --Allan McInnes (talk) 20:28, 14 September 2006 (UTC)

License tagging for Image:Turan-13-4.png

Thanks for uploading Image:Turan-13-4.png. Wikipedia gets thousands of images uploaded every day, and in order to verify that the images can be legally used on Wikipedia, the source and copyright status must be indicated. Images need to have an image tag applied to the image description page indicating the copyright status of the image. This uniform and easy-to-understand method of indicating the license status allows potential re-users of the images to know what they are allowed to do with the images.

For more information on using images, see the following pages:

This is an automated notice by OrphanBot. If you need help on selecting a tag to use, or in adding the tag to the image description, feel free to post a message at Wikipedia:Media copyright questions. 06:07, 2 October 2006 (UTC)

I agree with your view of math

"my view of math as a highly interlinked non-hierarchical graph of connections."

Hi, I agree with your view and was going to post something about graphs but decided not to after getting no reaction to my comments re file browsers.

I'm not a computer scientist, so I will put this as a fuzzy question:
If knowledge is represented as a graph,
what information would be needed at each node and edge to find a subgraph that is a tree (and therefore a hierarchy)?

BTW, I said "promising" as a way to promote further exploration.

--Jtir 21:48, 9 October 2006 (UTC)

Finding trees in graphs is easy: see spanning tree. But unless there's some information in the graph about directionality (is one concept a special case of another, or a generalization) and strength of connection, the trees you get won't necessarily correspond to any kind of logical hierarchy. For more on graph- and tree-based representation of knowledge, you might look at knowledge representation, ontology (computer science), and taxonomy. —David Eppstein 22:05, 9 October 2006 (UTC)
Thanks for the links. WP has a way to go to catch up with CS research. :-) --Jtir 22:22, 10 October 2006 (UTC)
Cyclic order
Anyone writing a textbook encounters the dependency ordering problem. Ideally one finds a linear ordering, so that it is never necessary to draw on results not yet presented. In practice, topics don't naturally allow such a convenient sort. Some strategies that are adopted for that kind of writing may be of limited help in an encyclopedia. However, one possibility is to split a topic into basic and advanced discussions. Thus AB becomes A1BA2. This is a fair approximation of how we learn, revisiting a topic as necessary for more advanced study. An example is integration in first-year calculus versus measure theory later. A more interesting case is foundations, where first we ignore the issue, then learn about classical logic and set theory, and later intuitionistic logic, and then perhaps topos theory. Bourbaki established a disastrous precedent for teaching by trying to start with the most general, least restricted concepts then narrowing, where historical discovery and effective learning work in the opposite direction.
Anyway, as David points out, hierarchy implies ordering, an ordered graph (directed graph) can include cycles, and cycles are incompatible with hierarchy (or linear ordering). --KSmrqT 04:58, 10 October 2006 (UTC)
I was referring specifically to trees, but your mention of cycles got me wondering if there is any example of knowledge that is represented by cycles — I can think of several: life cycles of organisms; morning, noon, and night; seasons; biochemical cycles. There is even a WP page called Cycle which lists these and others. --Jtir 22:22, 10 October 2006 (UTC)
That actually relates closely to an article I've been thinking of working on here, Antimatroid (currently merged with Greedoid but I think it has enough material to be a standalone). Antimatroids are usually axiomatized either as set systems or formal languages, but they can also be thought of as a kind of ordering of a system of elements, generalizing partial orders (both imply a set of possible linear orders but an antimatroid can represent a broader family of such sets). There's a local electronic learning company that's had some success in using such models to describe the connections between topics in elementary through secondary school mathematics... —David Eppstein 06:27, 10 October 2006 (UTC)

Dashes

Yes, that was an error on my part. Although, you'll notice that half of the conjectures listed on Erdős conjecture use hyphens instead of dashes. Yill577 22:01, 19 October 2006 (UTC)

Actually, quoting from Wikipedia's manual of style, "If hyphens and dashes are needed to write a page name correctly (e.g., Piano-Rag-Music, Jack-in-the-box, Nineteen Eighty-Four), prefer simple hyphens, and avoid hair spaces, even in the odd case of a range forming part of the title, e.g., History of the Soviet Union (1985-1991)." (Emphasis added.) That would seem to suggest the hyphen is in fact correct, not the dash. And in any case, my move was to add an acute accent to Paul Turán's name, not to change from dash to hyphen. Yill577 22:16, 19 October 2006 (UTC)

Replacing "\equiv" with "="

Hi David! Thanks a lot for helping on Wikipedia talk:WikiProject Mathematics/equivlist! I have one concern, though: Many people said that "it is particularly important for WP to highlight definitions on pages" and express this verbatim. From looking at some of your edits, it seems you are merely replacing "\equiv" with "=". In my edits, I always spent some thought about how to make it clear that the equations are definitions. Are you doing the same? — Sebastian (talk) 20:03, 24 October 2006 (UTC)

I was certainly looking at whether the text talked about defining notation versus stating equalities for existing notation. But perhaps I have different standards than you for how explicitly one should say "we define x to be..." versus "letting x = ..." etc. —David Eppstein 20:36, 24 October 2006 (UTC)
P.S. there was one page, Implementation of mathematics in set theory, where it may appear that my edits are a straight search and replace job. In that case, all the equivalence (and now equals) signs had a subscript "def", so I felt that the definitional nature of the notation was clear without any additional text. —David Eppstein 20:49, 24 October 2006 (UTC)
I see - thanks. Yes, our standards may be different; but this is only a secondary issue. My main interest was to eliminate the ambiguity between the different uses of "\equiv". I sincerely hope I did not discourage you from continuing this endeavour. — Sebastian (talk) 22:36, 24 October 2006 (UTC)

photo

Hi. Who is the copyright owner of spim.jpg, delicious.jpg, and limelena.jpg? If it's you, can I use all or any of them (specify which, I think I mostly want delicious.jpg) under GFDL 1.2 or any later version published by FSF? NerdyNSK 17:33, 5 November 2006 (UTC)

I took spim myself, delicious is by my father, and limelena is by Elena Mumford. I can send an email to my father asking whether he's willing to allow that use of the photo, if that's the one you prefer. Would "the copyright holder gave me permission to use this work in Wikipedia articles" be sufficient permission, or do you really need it to be more generally free? The former seems more likely to be granted. —David Eppstein 18:17, 5 November 2006 (UTC)
I wish to use a pic for the infobox I added to your Wikipedia entry. I prefer GFDL for philosophical reasons, but in practice any license will do (it would be good the licence to allow resizing). What permission terms can you give for spim.jpg (GFDL, CCL, only for Wikipedia, ...) ? NerdyNSK 18:51, 5 November 2006 (UTC)
Would CC attribution sharealike work for you? I could upload spim with that, or discuss the possibility of something like that for delicious. The other issue is what resolution would you want? I have spim at 2k x 3k, as a high quality jpg, but it's a 2Mb file. If I remember correctly delicious was cropped from something larger, though, so I'm not sure I have better than the 320x400 easily available on that one.
BTW, on a somewhat related subject, if you think my hobbies are really notable enough to include in the entry, you might consider my photography, e.g. on flickr.
David Eppstein 19:19, 5 November 2006 (UTC)
PS another possibility: more of a formal portrait. This is from a set of portraits the school commissioned in 2003, I believe on a work-for-hire basis, so the copyright holder would be the university; I can inquire whether there's any issue with allowing it to be used here but I don't expect there to be. —David Eppstein 19:38, 5 November 2006 (UTC)
I think the portrait is perfect for inclusion in Wikipedia. Please ask the copyright owner whether we could have it under GFDL or another licence suitable for the encyclopedia (I believe even fair use would be ok). In the meantime, if you want you could upload spim with any licence you want (CC sharealike sounds great, and I recommend dual-licensing with GFDL too if you like), at a good resolution, but I think it shouldn't be more than 500KB in jpeg format (in fact one can get good quality even with 200K). NerdyNSK 20:55, 5 November 2006 (UTC)
Ok, the image is now uploaded at full resolution (roughly 800x1000 in this case) at Image:Eppstein-UC03.jpg. Our communications office tells me they are hoping to commission a set of new photos to be licenced under Creative Commons, but for now it seems we need more restrictive conditions for this one. —David Eppstein 23:43, 5 November 2006 (UTC)
It looks good, thanks. Note that free images are better suited for Wikipedia, though. Do you know other professors/scientists who contribute in Wikipedia? NerdyNSK 20:52, 6 November 2006 (UTC)
You mean other than the ones listed in Category:Notable_Wikipedians and Wikipedia:Wikipedians with articles? I don't see User:McKay on either list, probably there are plenty of others missing from there as well. —David Eppstein 21:28, 6 November 2006 (UTC)

Probability-based strategy AfD

Just a note to let you know that I have nominated the article you have edited, or expressed interest in, for deletion. See Wikipedia:Articles for deletion/Probability-based strategy Pete.Hurd 05:29, 7 November 2006 (UTC)

Egyptian mathematics, especially the hekat

Hi David,

I see that you have removed the 1/320th discussion with the comment that it confuses the hekat topic. Well, let me stress that Ahmes and all other ancient scribes used ro = 1/320th as a hekat scaling factor in the remainder term whenever a divisor less than 64 was required to be used. I'd be happy to send by private email Hana Vymazalova's 2002 paper, one that corrects George Daressy's 1906 Akhmim Wooden Tablet paper (that indirectly corrects Peet's 1923 paper on the subject) that defines the turf in the ro arena. It is cited on the Egyptian math section of Wikipedia, so you should have no trouble in looking it up, if you choose not to request a copy.

Best Regards, Milo Gardner

Hi Milo. If you do have a copy, please email it to me — I suspect that would be easier than looking it up. Would a sentence like "For fractions of a hekat not expressible in multiples of 1/64, the Egyptians used the Horus Eye notation for as large a part of the fraction as possible, and then used their more general Egyptian fraction notation to express the remainder as a multiple of a ro, a unit equal to 1/320 of a hekat" be acceptable in this context? The point was that that paragraph is talking about the Horus Eye notation, so to suddenly switch to the other notation in the middle of the paragraph requires an explanation of how the switch relates to the subject of the paragraph. —David Eppstein 16:19, 7 November 2006 (UTC)

Hi David,

Thank you for the discussion. I'll be sending Hana's 2002 paper along with Daressy's 1906 paper, and even Peet's 1923 paper, if you desire. May I use your UCI email address?

Concerning Horus-Eye notation, it was introduced in Wikipedia's paragarph in terms of hekat sub-divisions. Hence to complete the hekat topic, as the ancient scribes wrote the subject, the rounded off data associated with Horus-Eye divisions, say by divisor three, where the remainder is one, the ro scaling factor 1/320 equals ro is required to be mentioned. Best Regards, Milo Gardner


Hi David,

Please excuse my implication that ancient Egyptian algebra was written exactly as modern algebra is written. Of course there is a major difference. Egyptians wrote unit fractions as a final notaitonal step. Today unit fraction memories from the Middle Ages, Greece and Egypt have been virtually erased from our memory. Hence scholars have poorly reported the unified aspects of Egyptian fraction arithmetic, a notation of writing rational numbers in short and concise unit fraction series, that lasted for about 3,600 years. To understand the final step in the ancient Egyptian algebra, the major diffference between today and yesterday, the RMP 2/nth table must be understood, via the Hultsch-Bruins 2/p method, and by another 2/pq method that was published in India in 2002 by myself. More on the H-B and 2/pq method, if you so desire. Best Regards, Milo Gardner

If you want to write more about it, please put it in the Egyptian mathematics or Egyptian numerals article. I want the main Egyptian fractions article to be only a short summary of each possible topic, with pointers to longer articles where more detail can be found. Egyptian mathematics has been marked as needing some revision, but I have no plans to work on it myself. —David Eppstein 16:04, 10 November 2006 (UTC)


Hi David,

I'd be happy to define ancient Egyptian fractions as you have define the modern algorithm form of Egyptian fractions. Given 80 years of mis-information on the ancient arithmetic it will be difficult to keep the discussion short, as you have requested. As a suggestion, I'd simply show how and why Egyptian arithmetic was the parent of Greek arithmetic. In that way, if there is not too much argument, I'll conclude that both Greek and Egyptian arithmetic used Egyptian fractions on the same abstract level, using minimal examples for addition, substraction, multiplication and division. Best Regards, Milo.

I have no problem with going into the subject at length. I just don't think the main Egyptian fraction article is the place for it. E.g., Znám's problem and Erdős–Graham conjecture are about Egyptian fractions, but both are separate articles and the description of them in the main article is very short and omits many important details about them. Anything significant lengthening of the sections of the Egyptian fraction article would unbalance the article and make it difficult to find the material in the other sections. So more details, example calculations, connections to other topics in mathematics, history of correct and incorrect analysis of the tablets and papyri by historians of mathematics, etc., are all good things to write about but not in Egyptian fraction, in the linked article instead. —David Eppstein 16:05, 15 November 2006 (UTC)

Hi David, The citation of Wolfram's web page where a short series of my summarized papers on the EMLR, and AWT appear is grossly incomplete. The main Wolfram author (Eric W.) of the Egyptian fraction subject, the author of the encyclopedia, stresses the modern aspects of the subject. This is a common position that you seem to take. I continue to work towards connecting the modern to the ancient, as medievals and Greeks knew the subject (of proto-number theory), as well as working in the reverse direction, connecting the ancient to the modern. Wolfram, Erik W. and modern number theorists often gets lost in the myopia of modern algorithmic trees. The ancient forest of proto-number and its use of prime numbers still grow algebraic identities like 2/pq = 2/A xA/pq, with A = (p + 1), as used 20 times in the RMP (a method that Brown missed) as do certain trees growing in our Sierra Mountains that took root in 4,000 BCE (awkward analogy?.). Best Regards, Milo Gardner

Concerning your 12/12/06 re-entry of a modern 'best' series, I see no justification for it, other than your 'sense' of the subject. Is Wikipedia not a discussion area that requires proof - by a previous academic source? Best Regards, Milo Gardner 12/12/06.

It requires proof for statements not supported directly by the texts. The Egyptians' missing the simplification 1/370+1/560=1/228 is a fact,

verifiable directly from translations of the RMP. Any speculation about why they missed it would require external citations to avoid being original research. But I don't think I included anything speculative. And I think including the fact itself is relevant as a counter to bizarre claims that the mystic wisdom of the ancients surpassed anything modern mathematics can do. —David Eppstein 17:19, 12 December 2006 (UTC)

Hi David, we are nearing the end of our 'debate'. Once the issues of the Liber Abaci are put aside, separating the ancient Egyptian data from the modern algorithm data (the later I find very little of - except by extropolation - to use your term), our time together should end.

Thank you very much for an interesting series of proofs and counter-proofs. Many of your facts have been rhetorical (in my eyes), so real, but possibly not historical. That is, your modern views of ancient data have been interesting, as you properly cite some method that calculates 370' 560' 228', without showing why Ahmes missed this 'best' series. Best Regards, Milo Gardner 12/13/06

Well, I don't know why he missed it. My best guesses would be (1) that once he had a good enough answer he wasn't particularly concerned with getting the best answer, and (2) it's an oversight that's easy to make and doesn't require much explanation. But I'm not well trained in historical mathematics (despite having studied with Knorr) so I think it would be too speculative to say any such thing in the article. —David Eppstein 17:52, 13 December 2006 (UTC)

David, congrats on studying with Knorr. His 1982 paper on Egyptian and Greek Egyptian fractions citing the Akhmim Papyrus opened many doors for me, and Kevin Brown, as our n/17 and n/19 paper from 1995 covers. Too bad that Knorr did not publish any of his analysis on the meaning of the n/p and n/pq tables upto n/32, as I recall. Citing ancient data without trying to analyze its historical context, and its implications to later math, is a rather odd poilicy, at least, that is my view.

Concerning our discussions, we are coming to the Liber Abaci's use of the oldest form of remainder arithmetic, as used in the AWT, RMP and every other hieratic, and Greek text. Classifying quotients and remainders as modern radix, or mixed-radix info, is something that I did when first reading Hana Vymazalova's 2002 AWT paper. But I was wrong then. So let's try not to 'jump to conclusions' as Struik and others have done from time to time, with the meaning of base 60 data in the Almagest, and so forth. Let the ancient data speak for itself.

Robins-Shute tried to do it "let the ancient data speak for itself' when reading and publishing the RMP in 1987. They used the term 'partial products' and the term 'remainder'. They covered the integer data naming it 'partial product', data which I see as quotients, and not a radix. This fact is important when added to the next fact. Robins-Shute went on and properly titled the vulgar fraction data, that preceeded the writing of Egyptian fraction information, as remainders, a fact that is very important. Taken together, quotients and remainders define the exact data that you cite as mixed-radix in the Liber Abaci.

Is all this information coming together for us, so we can end the fun time that we've shared? Best Regards, Milo Gardner 12/14/06.


Hi David, my Liber Abaci discussion will not be based on 'google' searches, as yours seems to touch on, with respect to second subtractions, or any other subject. My analysis will focus on the Egyptian fraction methods used in the text, beginning with the 7 that you cite are covered in chapter 7, and Eguptian fraction methods used in other ways in the Liber Abaci. My copy of the Liber Abaci will not arrive until Jan 26th, or so. Our potential serious discussions on Fibonacci's 'scienta' and 'ars' may commence shortly after at this time, sometimes linking to earlier abstract mathematics, and sometimes not. Best Regards, Milo Gardner, 12/19/06.

The Google search was merely confirmation that your use of terms such as "second subtraction" is neologism. The actual content I added to the Liber Abaci article is based purely on my reading of (the Sigler translation of) the book. —David Eppstein 18:29, 19 December 2006 (UTC)

Hi David, Thank you for adding the clear use of Brown's view of H-B, and the citation of 2/pq = 2/A x A/pq, where A = (p + 1), mathematical facts. Math facts and their proofs define clear standards that we both have agreed upon for some time now. Re-writing these often easy to read math facts into everyday English grammar and examples have presented its challenges, challenges that we may be facing in our own way. Our subtle and conflicting versions of the same data, usually are mathematically identical. Yet we hit snags when valid alternatives have run into one another. Which one came first, a type of chicken or the egg question? We also have hit snags when you have seen algorithms, say in a medieval text, when I only see one or two subtraction methods in the same text. To resolve our minor conflicts, I like to ask, which alternative did the ancient scribe use, and what confirmation process is needed to select one alternative form over another? My standard has been to reference two ancient texts, and thereby find at least two examples of the same math pattern/method. Your position tends to take a modern point of view, such asking and answering: which scholar first saw the same ancient pattern, and scholars should be given credit for confirming the method?

I propose that there is room, and meaning, to include both of our versions and approaches to reporting the history and content of Egyptian fractions. Your version is critically important to include. Without modern scholars, the ancient texts may have not been read at all. Wikipedia thoughtfully requires acadecmic citations at every step of the way of the scholarly decoding process. I agree with your standard, and having being following it as best that I am able, always careful to document who and when first found what. My version may seem not to be needed in Wikipedia, since one citation of a mathematical fact, in whatever form, takes up less space than discussing two equal sets of facts. Yet, in the end, Wikipedia readers will benefit for having available links or broader discussions of Egyptian fractions and their role in ancient and modern mathematics.

Let me stop at this point, awaiting the Liber Abaci discussion. My work may pin-point a long or short list of theoretical facts/methods that may link, not link, the 3,200 year use of Egyptian fractions (2,000 BCE to 1202 AD). Anticipating the worst, only confirming a short list (possibly your intuitive position?), Ahmes and Fibonacci may have used Egyptian fractions for very different reasons, using mostly unlike methods. In that case, the short list may fairly represent a march towards base 10 decimals, per Hindu-Arabic numbers and zero, than also outlining connections to a body of knowledge that dates back 3,200 years. Best Regards, Milo Gardner 12/23/06.

"sentence no verb"

This sentence has no.Rich 05:24, 20 November 2006 (UTC)

Follow-up on new Template:MathSciNet

Hi David. I note that you only hope to provide MR numbers for those papers that actually have an MR abstract. Do you have an opinion on the value of those abstracts for more recent papers? I know that in the old days, people often didn't write abstracts (like the Alaoglu papers that have no abstract). For the recent papers that DO have an MR abstract, I often notice that it's no better than the one that comes with the paper. (There are amazing exceptions here and there). I'm guessing that perhaps papers that are *very* new (new enough to have a DOI, for example) may have less need of an MR abstract. I'm interested in how we could upgrade the referencing in the math articles generally, and so I'm taking advantage of your MathSciNet discussion to see what you think could be usefully done. EdJohnston 20:47, 2 December 2006 (UTC)

Answered over on WT:WPM#New MathSciNet template. —David Eppstein 20:57, 2 December 2006 (UTC)

Fictional curvature tensors

That was just a joke. On my last trip to France, I was eating at a restaurant, when I overheard some people from another table speaking English, and not only that, they were talking about math. Something about curvature tensors, Siegel disks, Johnson zeroes, left/right topologies, all kinds of very advanced stuff. But when the check came and there was some disagreement about what to tip the garcon, they were all at a complete loss about basic arithmetic! PrimeFan 18:45, 6 December 2006 (UTC)

Congratulations

And while I'm here, I wish to extend my congratulations for getting the article on Sylvester's sequence acknowledged as a good article. I think it is mainly because of your fine work on it these last few months that the nomination was accepted. The jury is still out on Znam's problem, but I'm sure that one will pass too. PrimeFan 18:48, 6 December 2006 (UTC)

Thanks! —David Eppstein 19:06, 6 December 2006 (UTC)

Hi David, congratulations on the great work you've done on this and other articles. I've put the GA nomination on hold until a few (very small) problems have been cleared up. Once these tweaks are done, it'll be perfect. Cheers! yandman 10:31, 15 December 2006 (UTC)

About AfDs

Recently, at Wikipedia:Articles for deletion/Dispersive PDE Wiki, you said "It's my understanding that this process is not a vote on how much we like the article, but rather a discussion to build a consensus on whether the article meets the appropriate notability guidelines." While it is true that "Non-notable website" was the reason Mike Peel gave for nominating the article for deletion, it is a distortion of the process to confine attention in that way.

The way it usually works is, someone sees an article that rubs them the wrong way. They could have any number of complaints. Here are some choices for what happens next.

If a page seems extreme enough, and if it meets certain criteria, it is not necessary to subject it to a vote at all. Instead, a proposal to delete notice is placed at the top of the article, and the article is listed in the appropriate place. Properly, interested parties (like the creator) might be notified. If no one objects in the allowed time, an admin will remove the article without debate. The process can be derailed instantly by any objection.

Particularly extreme pages may warrant speedy deletion. This can be done by an admin, and requires no notice and no debate. Obviously it should be used with great care.

The AfD (Articles for Deletion) process demands more active involvement. The fundamental question is whether the article should be retained or not. (It may also be renamed, or merged, or otherwise dealt with.) We are not bound by the reason(s) initially given for proposing deletion. They may be deemed relevant; they may not. We may find good reasons to retain the article despite valid criticisms, or alternative reasons to delete it that are more compelling than its benefits.

Some editors try to add an air of authority to their opinions by citing policies and guidelines as if their view was the last word and by using legalistic language (ironically, something that is officially discouraged). Take it all with a grain of salt; often it's hype and spin. The only genuine last word on Wikipedia is Jimmy Wales, and he rarely speaks. Everything else is collective decisions.

In AfD decisions, people can offer arguments, opinions, and policies all they like, but ultimately it comes down to consensus, as seen by the closing admin. Some folks prefer more articles, even tiny pages on obscure topics. (Example: Toshio Suzuki.) Some folks prefer only the kind of thing that might be found in Encyclopædia Britannica. (Example: Leonhard Euler.) On a topic like the Seven Bridges of Königsberg, the first group would surely keep it but the second group might not, even though most mathematicians appreciate its significance.

I think some editors are embarrassed by the truth, that often decisions are heavily influenced by a small, vocal group of supporters or detractors. This includes the decision to bestow admin privileges. Some also pretend that quality control can be accomplished by anyone, regardless of whether they are experts in the topic or the English language.

You will have to find your own way. Remember always that the people around you can have any age, any native language, any expertise, any writing skill, any agenda, and any mental aberration you can imagine; that is both a strength and a weakness. (For my own amusement, I keep the E=mc² article on my watchlist as an on-going case study in good and bad edits.) As I write, we have articles on a long list of Pokémon characters, and also on an impressive list of theorems. I suggest that you decide what you want in your encyclopedia, then live with the fact that it is not yours alone. --KSmrqT 05:08, 23 December 2006 (UTC)

The Liber Abaci and its four arithmetic operations + weights & measures

(Wow, I have been in brain lock the last two days, writing and falsely discussing subtraction of two fractions when all the facts mentioned defined the division of two fractions. I'll try apologizing by altering a couple of the most seriously flawed posts).

Fibonacci's notation needs to be explained in detail, and not stated in fuzzy terms like abc/def = a/def + a/adef. Your statement should mean abc/def - a/def = (abcde - adef)/(def)^2 though you have written out another explanation (one that I have not been able to parse). The same muddled arithmetic is connected to your other attempt to describe Fibonacci's use of zero as a place-holder. Let me explain, again, what I mean, in detail.

Once you have supplied a couple of examples in your unfinished attempt to describe Fibonacci's abstract arithmetic, you may come much closer to my point of view. My view is that Fiboancci was actually using the easy to read a/b - c/d = (ad-bc)/bc, our modern definition of subtraction, a fact that had been omitted in your review of the Liber Abaci.

It is already true, based on your example, 7/3 = 2 1/3, that Fibonacci used our modern definition of division, with 2 being a quotient and 1/3 being a remainder, a fact that has also not been noted.

To fairly read Fibonacci's method of subtraction, his form of division can be altered, such at 7/3 - 2 = 1/3, again, with 2 being a quotient and 1/3 as a remainder, or another term for quotient (which is incorrect). These facts have not been cited within your observations of Fibonacci's method for parsing fractions into component divisors - or some such practice problem. I was looking for an explanation of your single and mixed- radix based arithmetic and I could not find them. As our discussions progresses, you may be able to see that the Liber Abaci converted certain rational numbers into nice multiples for use in weights and measures problems, as first documented in 2000 BC whehn some scribe altered the definition of 1 hekat to 64/64 such that:

(64/64)/n = Q/64 + (5R/n)*1/320

was used for n < 64. The main reason for the AWT scribe's substitution of 5/320 for 1/64, and the factoring of 5, leaving 1/320th as a separte GCD or LCM, was that 1/64th units could then be sub-divided into smaller units, such as 10/n and 320/n, as were used by Ahmes. Fibonacci achieved the same creation of several weights and measures units using a slightly different approach, one that you have muddled to the max. Best Regards, Milo Gardner 12/25/06.

You don't read instructions very well, do you? See the one at the top of this page, about using the tab marked with a plus sign to create new topics?
Regarding Fibonacci and fractions: of course one can think of fractions such as 2 1/3 as "really meaning" that you've divided 7 by 3 and produced a quotient of 2 and a remainder of 1. And mathematically, there would be nothing incorrect about that. But most people today would view it as "really meaning" a fractional number somewhat larger than 2 and smaller than 3. I see no reason to assume anything different about Fibonacci's understanding, and more to the point since that paragraph is helping modern readers understand Fibonacci's notation I think we should explain that notation in as familiar terms as possible.
Frankly, I found your replacement paragraph for my description, the one that I reverted, totally incomprehensible. It was like a sequence of symbols that vaguely resembled mathematics and a sequence of words that vaguely resembled English, strung together. And this despite my clear understanding of the arithmetic in Liber Abaci that it was supposedly describing. Such writing is not useful to anyone, not even yourself. Think more clearly and write more clearly before trying to show your writing to others by inserting it here.
And I have no idea what you're talking about re muddling lcms and gcds. I have not discussed that aspect of Liber Abaci at all.
David Eppstein 16:19, 25 December 2006 (UTC)

(My double, and triple apology for not acting on some fact that I have read, and previously not used, and not correctly stating a definiton of of the subtraction of fractions, and making other improper statements Hence I did not know how to properly start a new paragraph, and did not know how to even write a simple algebraic sentence).

Dear David, the modern multiplicaitons of two fractions, with a/b, c/d can easily be written as a/b x c/d = ac/bd, a form that is obvious to anyone with algebra training, a form that Fibonacci did use. My naming ac/bc as the result of a subtraction operation was stupid, blind and worse. However, your insistence that my points, and their relation to medieval and ancient scribal division, where 7/3 = 2 (quotient) + 1/3 (remainder), may seem muddled in your world of modern algortihms, a place in which medievals and ancient Greeks and Egyptian did not reside.

Again, I am first a cryptanalyst, one that looks at patterns, and sometimes misnames one or two. My work continues to to read the ancient remainder arithmetic that allowed 2,000 BCE scribes to partition a hekat into exact 1/320th units, two-part statements(Q/64 + (5R/n)*1/320), one-part statments(10/n hin, 320/n ro) and several methods to convert rational numbers into Egyptian fraction series. These ancient definitions cover much of the turf of your singular and mixed radix Liber Abaci snapshots in ways that you may also affirm.

For now, my work will, for the first time, attempt to fairly read Fibonacci by possibly following the same class of rules that achieved a related partitioning of other weights and measures units, or just review the four arithmetic operation. In my eyes, your analysis has only reported the tip of an iceberg, a small fragment of Fibonacci's arithmetic, one that seems confusing because I did not understand it - possibly causing my mind block. It appears that you may not be interested in detailing examples of Fibonacci method of subtraction or division, or examples of his closely related method to create weights and measures units.

May be in 2007 you'll feel diffferently. Best Regards, Milo Gardner 12/25/06.

I am interested first in having an article that laypeople can read and find useful and interesting, second, in describing accurately what mathematics Fibonacci knew and how he came to know it, and third, providing enough of a description of his notation that modern readers will be able to read and understand Fibonacci's own words in the case that they wish to read further. Describing everything in precisely the same terms Fibonacci would have used himself, or even in the same level of detail that Fibonacci gave, is not a goal, for if a reader wants that they can refer to Fibonacci's text directly. Perhaps you have heard Borges' story about a country in which the inhabitants were skilled mapmakers, so skilled that they made maps in exactly the same size and detail as the land they were mapping? Such a map is not useful. It is only by condensing, and by expressing things in clear language that can be understood to the extent possible by non-experts, that we provide a useful service to others by writing here. —David Eppstein 21:42, 25 December 2006 (UTC)

I agree with your points. Wow, what a way to end a major holiday, eating humble pie. Best Regards, Milo Gardner 12/25/06

Dear David, your first response to any of my major changes tends to be incomprehensible, or terms to that effect, returning a well thought out revision to your earlier words, with no apology for making a possible error in judgment. Clearly, from my point of view, every one of my 12/31/06 Liber Abaci changes where taken directly from Sigler's footnotes, adding only the facts of the Egyptian way of writing each rational number, a step that Sigler had not directly considered.

Taken together, as you had requested a review of the pre-1202 AD theoretical arithmetic, Fibonacci reports a long tradition of placing the fundamental theorem of arithmetic, in its many forms, in the center of his arithmetic. As anyone can discover by working with Fibonacci's three notations, one for fractions and the other two with radix aspects, the oldest methods of Egyptian fractions are still readable in 1202 AD, views that trace medieval Egyptian fractions back in time to Euclidean ways of writing these numbers, to the older ones that we know so well (as Fibonacci later reports in Chapter 7).

That is, the 1585AD statement of base 10 decimals took one Fibonacci special case, 6/10 5/10 1/10 4/10 1/10 3 as noted by the manner in which 3.14156 is written today and created a lesser numeration system than the one that had existed for many years. The newly adapted base 10 notation formalized Hindu-Arabic numerals within an algorithmic structure, a structure that oddly removed the traditional fundamental theorem of arithmetic from its core. A full restatement and proof of the FTA, in modern terms, had to wait until 1801. Gauss's "Discussions on Arithmetic" took many of the residue facts reported by Fibonacci, and formalizing it to include clear definitions of the Chinese Remainder Theorem and other important modern number theory ideas (ala Oystein Ore and many other modern authors), a point that Sigler himself cited.

Let me stop now, and say, Happy New Year. We'll have a great deal to discuss, by clear examples and few words, in 2007. Best Regards, Milo Gardner, 12/31/06.

Four Color Theorem question on Reference Desk

I´ve answered your comment, would you have a look on it and tell me what you think?FoCoTh 05:31, 27 December 2006 (UTC)

I responded there. Thanks for the heads-up. —David Eppstein 05:39, 27 December 2006 (UTC)