Copyright © Philip M. Parker, INSEAD. Terms of Use.

"RUNS" is a plural of: run. |
Date "RUNS" was first used in popular English literature: sometime before 1050. (references) |
| Domain | Definition |
Geography | Natural waterways in many flat prairie sections, through which surface waters find their way, in the spring and at times of heavy rains, into drainage channels. Source: European Union. (references) |
Literature | Runs The tub runs- leaks, or lets out water. In this and all similar phrases the verb run means to "be in a running state." Thus we have "the ulcer runs," "the cup runs over," "the rivers run blood," "the field runs with blood." Source: Brewer's Dictionary. |
Meteorology & Standards | Ina series of observations of attributes, the occurrence of an uninterrupted series of the same attribute is called a "run". In a series of variate-values, a consecutive set which are monotonically increasing or decreasing are said to provide runs "up" or "down" respectively. Source: European Union. (references) |
Source: compiled by the editor from various references; see credits. | |
(From Wikipedia, the free Encyclopedia)
Big O notation (with a capital letter O -- originally an omicron -- not a zero), also called Landau's symbol, is a symbolism used in complexity theory, computer science, and mathematics to describe the asymptotic behavior of functions. It indicates how fast a function grows or declines.
Landau's symbol comes from the name of the German number theorist Edmund Landau who invented the notation. The letter O is used because the rate of growth of a function is also called its order.
For example, when analyzing some algorithm, one might find that the time (or the number of steps) it takes to complete a problem of size n is given by T(n) = 4 n2 − 2 n + 2. If we ignore constants (which makes sense because those depend on the particular hardware the program is run on) and slower growing terms, we could say "T(n) grows at the order of n2" and write:T(n) = O(n2).
In mathematics, it is often important to get a handle on the error term of an approximation. For instance, one may write
to express the fact that the error is smaller in absolute value than some constant times x3 if x is close enough to 0.
For the formal definition, suppose f(x) and g(x) are two functions defined on some subset of the real numbers. We write
if and only if there exist constants N and C such that
- f(x) = O(g(x)) as x → ∞
Intuitively, this means that f does not grow faster than g.
- |f(x)| ≤ C |g(x)| for all x > N.
If a is some real number, we write
if and only if there exist constants d > 0 and C such that
- f(x) = O(g(x)) for x -> a
- |f(x)| ≤ C |g(x)| for all x with |x-a| < d.
The first definition is the only one used in computer science (where typically only positive functions with a natural number n as argument are considered; the absolute values can then be ignored), while both usages appear in mathematics.
Here is a list of classes of functions that are commonly encountered when analyzing algorithms. The slower growing functions are listed first. c is some arbitrary constant.
notation name O(1) constant O(log(n)) logarithmic O((log(n))c) polylogarithmic O(n) linear O(n log(n)) sometimes called "linearithmic" O(n2) quadratic O(nc) polynomial, sometimes "geometric" O(cn) exponential O(n!) factorial Note that O(nc) and O(cn) are very different. The latter grows much, much faster, no matter how big the constant c is. A function that grows faster than any power of n is called superpolynomial. One that grows slower than an exponential function of the form cn is called subexponential. An algorithm can require time that is both superpolynomial and subexponential; examples of this include the fastest algorithms known for integer factorization.
Note, too, that O(log n) is exactly the same as O(log(nc)). The logarithms differ only by a constant factor, (since log(nc)=c log(n)) and thus the big O notation ignores that. Similarly, logs with different constant bases are equivalent.
The above list is useful because of the following fact: if a function f(n) is a sum of functions, one of which grows faster than the others, then the faster growing one determines the order of f(n). Example: If f(n) = 10 log(n) + 5 (log(n))3 + 7 n + 3 n2 + 6 n3, then f(n) = O(n3). One caveat here: the number of summands has to be constant and may not depend on n.
This notation can also be used with multiple variables and with other expressions on the right side of the equal sign. The notation:
represents the statement:
- f(n,m) = n2 + m3 + O(n+m)
Obviously, this notation is abusing the equality symbol, since it violates the axiom of equality: "things equal to the same thing are equal to each other". To be more formally correct, some people (mostly mathematicians, as opposed to computer scientists) prefer to define O(g(x)) as a set-valued function, whose value is all functions that do not grow faster then g(x), and use set membership notation to indicate that a specific function is a member of the set thus defined. Both forms are in common use, but the sloppier equality notation is more common at present.
- ∃C ∃N ∀n,m>N : f(n,m)≤n2+m3+C(n+m)
Another point of sloppiness is that the parameter whose asymptotic behaviour is being examined is not clear. A statement such as f(x,y) = O(g(x,y)) requires some additional explanation to make clear what is meant. Still, this problem is rare in practice.
Related notations
In addition to the big O notations, another Landau symbol is used in mathematics: the little o. Informally, f(x) = o(g(x)) means that f grows much slower than g and is insignificant in comparison.
Formally, we write f(x) = o(g(x)) (for x -> ∞) if and only if for every C>0 there exists a real number N such that for all x > N we have |f(x)| < C |g(x)|; if g(x) ≠ 0, this is equivalent to limx→∞ f(x)/g(x) = 0.
Also, if a is some real number, we write f(x) = o(g(x)) for x -> a if and only if for every C>0 there exists a positive real number d such that for all x with |x - a| < d we have |f(x)| < C |g(x)|; if g(x) ≠ 0, this is equivalent to limx -> a f(x)/g(x) = 0.
Big O is the most commonly used of five notations for comparing functions:
Notation Definition Analogy f(n) = O(g(n)) see above ≤ f(n) = o(g(n)) see above < f(n) = Ω(g(n)) g(n)=O(f(n)) ≥ f(n) = ω(g(n)) g(n)=o(f(n)) > f(n) = Θ(g(n)) f(n)=O(g(n)) and g(n)=O(f(n)) = The notations Θ and Ω are often used in computer science; the lower-case o is common in mathematics but rare in computer science. The lower-case ω is rarely used.
A common error is to confuse these by using O when Θ is meant. For example, one might say "heapsort is O(n log n) in average case" when the intended meaning was "heapsort is Θ(n log n) in average case". Both statements are true, but the latter is a stronger claim.
Another notation sometimes used in computer science is Õ (read Soft-O).
f(n) = Õ(g(n)) is shorthand for f(n) = O(g(n) logkn) for some k. Essentially, it is Big-O, ignoring logarithmic factors.The notations described here are used for approximating formulas (e.g. those in the sum article), for analysis of algorithms (e.g. those in the heapsort article), and for the definitions of terms in complexity theory (e.g. polynomial time).
Source: adapted by the editor from Wikipedia, the free encyclopedia under a copyleft GNU Free Documentation License (GFDL) from the article "Big O notation."
(From Wikipedia, the free Encyclopedia)
In baseball, the object of the game is for a team to score more runs than its opponent. Runs are scored when a player advances safely around all three bases and returns safely to home plate. A player who does so is credited with a run, or sometimes referred to as a "run scored."Source: adapted by the editor from Wikipedia, the free encyclopedia under a copyleft GNU Free Documentation License (GFDL) from the article "Run (baseball statistics)."
| Context | Synonyms within Context (source: adapted from Roget's Thesaurus). |
Eventuality | Phrase: that's the way the ball bounces, that's the way the cookie crumbles; you never know what may turn up, you never know what the future will bring; the plot thickens; "breasts the blows of circumstance"; "so runs round of life from hour to hour" "sprinkled along the waste of years". |
Intelligibility | Phrase: he that runs may read; (manifest). |
Manifestation | Phrase: cela saute aux yeux; he that runs may read; you can see it with half an eye; it needs no ghost to tell us; the meaning lies on the surface; cela va sans dire; res ipsa loquitur; "clothing the palpable and familiar"; fari quae sentiat; volto sciolto i pensieri stretti; "you don't need a weatherman to know which way the wind blows". |
News | Adverb: as the story goes, as the story runs; as they say, it is said; by telegraph, by wireless. |
Prosperity | Phrase: one's star in the ascendant, all for the best, one's course runs smooth. |
Time | Phrase: time flies, tempus fugit; time runs out, time runs against, race against time, racing the clock, time marches on, time is of the essence, "time and tide wait for no man". |
| Source: adapted from Roget's Thesaurus. | |
Crosswords: RUNS |
| Specialty definitions using "RUNS": Runs may Read ♦ Wald-Wolfowitz runs test. (references) |
| Etymologies containing "RUNS": Percursory. (references) |
| Non-English Usage: "RUNS" is also a word in the following language with the English translation in parentheses. French (runs). |
| Domain | Usage | |
Screenplays | This is only a dream. When you wake up, you'll just be Peter Banning - a cold, selfish man who drinks too much, who's obsessed with success, and runs and hides from his wife and children (Hook; writing credit: J.M. Barrie;) I hope he runs out of gas (Stuart Little; writing credit: M. Night Shyamalan) I just would like to say no one else in my gene pool runs like a girl (Austin Powers in Goldmember; writing credit: Mike Myers) Insanity runs in my family It practically gallops (Arsenic and Old Lace; writing credit: Ryuzo Kikushima; Akira Kurosawa) The same blood runs through both of us. The blood of a beast who wanders, hunting for the blood of others (Cowboy Bebop; writing credit: Akihiko Inari) | |
Lyrics | Love runs deeper than any ocean, it clouds you're mind with emotion (Everybody Plays the Fool; performing artist: Aaron Neville) FLEXING VOCABULARY RUNS RIGHT THROUGH ME (Never Ever; performing artist: All Saints) My red blood runs true blue (Every Heartbeat; performing artist: Amy Grant) But his blood runs through (Leader Of The Band; performing artist: Dan Fogelberg) Nobody runs from the law now baby (If I Fall You're Going Down With Me; performing artist: Dixie Chicks) | |
Clever | If your feet smell and your nose runs, you've been made upside-down. (references; author: unknown) A bus is a vehicle that runs twice as fast when you are after it as when you are in it. (references; author: unknown) | |
Movie/TV Titles | It Runs in the Family (2003) Runs Good (1970) My Blood Runs Cold (1965) Red Runs the Fraser (1949) Mantan Runs for Mayor (1946) | |
Source: compiled by the editor from various references; see credits. | ||
| Domain | Title |
Books | |
Theater & Movies | |
Music |
|
Source: compiled by the editor from various references; see credits. | |
| Thumbnail | Description & Credit | Thumbnail | Description & Credit |
Line drawing showing the lining of the GI tract: colorectal (muscularis). The walls of the digestive tract have four layers of tissue: mucosa, submucosa, muscularis externa and serosa. The inner-most layer is the mucosa, a membrane that forms a continuous lining of the GI tract from the mouth to the anus. In the large bowel, this tissue contains cells that produce mucus to lubricate and protect the smooth inner surface of the bowel wall. Connective tissue and muscle separate the muscosa from the second layer, the submucosa, which contains blood vessels, lymph vessels, nerves and mucus-producing glands. Next to the submucosa is the muscularis externa, consisting of two layers of muscle fibers-one that runs lengthwise and one that encircles the bowel. The fourth layer, the serosa, is a thin membrane that produces fluid to lubricate the outer surface of the bowel so that it can slide against adjacent organs. Credit: Unknown photographer/artist. | Here a field worker runs a power sprayer on a truck as it emits an insecticide. Credit: CDC. | ||
![]() | A Rille Runs Through It. Credit: NASA. | ![]() | Trolley rig - paying out leadline by hand as trolley carriage runs down cable Off of ISIS. Credit: Coast & Geodetic Survey Historical Image Collection. |
![]() | General Vessel Assistant King runs winch and Chief Boatswain Nutting reads wire angle during bongo tow operations. Credit: Fisheries. | ![]() | Salmon being counted when passing through weirs. By law, a certain percentage of salmon runs had to be allowed to escape commercial fisheries in order to spawn. To check the percentage, counting weirs were maintained on many streams. F&W - 10,111. Credit: Fisheries. |
![]() | This image shows the sheen that occurred after the blow out. It runs through the boom and out the cuts in the island created by Hurricane Andrew. Credit: NOAA Restoration Center. | ![]() | The Route 9 Bridge that crosses Army Creek just upstream from the tide gate. The Army Creek wetlands are on both sides of the road. The road runs North/South , Army Creek runs East West. Credit: NOAA Restoration Center. |
![]() | Rotational grazing and proper pasture management protects the trout stream that runs through the pasture. Class I trout stream in Columbia County, WI. Credit: Bob Nichols. | ![]() | The water in this Peoria County, Illinois creek runs clear thanks the landowner who planted vegetation along the edges. These riparian buffer strips filter water runoff from the fields. Credit: Bob Nichols. |
Source: pictures compiled by the editor from various references; see picture credits. | |||
![]() | ![]() |
| "A river runs through" by Adam Brown Commentary: "Chatsworth House, Derbyshire." | "Asian beetle" by Kevin Rohr Commentary: "Beetle runs from me." |
Source: photographs selected by the editor, with permission from the photographers. | |
| Play | Caption |
| Space-sounding excerpt with fast runs, digital tones, and sustained strings. | |
| Source: compiled by the editor from various references; see credits. | |
| Author | Quotation |
Author Unknown | Babe Ruth had 714 home runs, but struck out 1330 times. |
Charles Dickens | He had but one eye and the pocket of prejudice runs in favor of two. |
Christian Nevell Bovee | Partial culture runs to the ornate, extreme culture to simplicity. |
Emerson | The borrower runs in his own debt. |
Henry David Thoreau | A man sits as many risks as he runs. |
Ouida | A cruel story runs on wheels, and every hand oils the wheels as they run. |
Ovid | A horse never runs so fast as when he has other horses to catch up and outpace. |
Samuel Butler | Evil is like water, it abounds, is cheap, soon fouls, but runs itself clear of taint. |
Thomas Fuller | A drinker has a hole under his nose that all his money runs into. |
Source: compiled by the editor from various references. | |
| Title | Author | Quote |
Emma | Austen, Jane | One takes up a notion, and runs away with it. |
Sylvie and Bruno Concluded | Carroll, Lewis | Your horse runs. |
Scarlet Letter | Hawthorne, Nathaniel | It runs away and hides itself, because it is afraid of something on your bosom |
Les Miserables | Hugo, Victor | I make signs to Madame Magloire that she shall not oppose him, and he runs what risks he chooses |
Grapes of Wrath | Steinbeck, John | Clean, runs good |
Gulliver's Travels | Swift, Jonathan | The people were unanimous, and had laid in stores of provisions, and a great river runs through the middle of the town |
Walden | Thoreau, Henry David | The consequence is, that while he is reading Adam Smith, Ricardo, and Say, he runs his father in debt irretrievably |
Source: compiled by the editor from various references. | ||
| Subject | Topic | Quote |
Health | Psoriasis often runs in families. (references) | |
Celiac disease is a genetic disease, meaning that it runs in families. (references) | ||
The first set gives the patient a mild shock that stimulates the nerve that runs to that muscle. (references) | ||
Business | The Army also runs large scale farms. (references) | |
The need for energy efficiency runs through all sectors. (references) | ||
It offers short-term profits but runs the risk of creating long-term competitors. (references) | ||
Children | Russia | Bereg runs a shelter and offers training programs to children and social workers. (references) |
Honduras | The Tegucigalpa city administration runs 12 temporary shelters with a total capacity of 240 children. (references) | |
Indonesia | The Government also runs three national schools for the visually and hearing impaired, and persons with mental disabilities. (references) | |
Civil Liberties | Fiji | Religion runs largely along ethnic lines; most ethnic Fijians are Christians, and most Indo-Fijians are Hindu. (references) |
Cameroon | The Cameroon Tribune has a print run of only approximately 5,000; the four most important opposition papers Dikalo, Le Messager, Mutations, and Nouvelle Expression, have print runs of between 5,000 and 10,000 each. (references) | |
Cameroon | Formal censorship ceased in 1997. Since 1998, the Government largely has ceased to interfere with private newspaper distribution or seize print runs of private newspapers; however, security forces continued to restrict press freedom by harassing or abusing private print media journalists. (references) | |
Economic History | Egypt | The president's term runs for 6 years. (references) |
Malawi | A rainy season runs from November through April. (references) | |
Kuwait | Kuwait ordinarily runs a balance-of-payments surplus. (references) | |
Human Rights | Pakistan | Police corruption was most serious at the level of the Station House Officer (SHO), the official who runs each precinct. (references) |
Guatemala | The Secretariat for Social Welfare runs four Centers for the Treatment and Orientation of Minors: one for girls and three for boys. (references) | |
Albania | The Judicial Budget Office, a separate, independent body, administers court budgets, but each court may decide how to spend the money allocated to it. A board chaired by the Chief Justice of the Supreme Court runs the Judicial Budget Office; all other board members are judges. (references) | |
Political Economy | INDONESIA | Thus it runs the risk of having to inject more funds into the banking system. (references) |
Mexico | A non-partisan council runs the IFE, the agency that oversees federal elections. (references) | |
Uruguay | While party ideology runs from fiscal conservatism to populism, the largest faction favors economic reform and free enterprise. (references) | |
Trade | India | However, the exporter runs the risk of the buyer not accepting the documents. (references) |
India | In this payment method the exporter runs a high risk of not being paid, and therefore, is only used with buyers who are credit worthy. (references) | |
Haiti | These banks offer a full range of banking services (demand deposits, checking services, savings and time deposits, purchase and sale of foreign currency, opening and amending of letters of credit, safety deposit services, bid and performance bonds for bidding competitions, discounting of commercial paper, warrants, lines of credit, etc.). Citibank runs the GSM program - a program offering credit guarantees for agricultural exports from the U.S. Citibank also runs the OPIC facility, which offers loans to Haitian and American business enterprises for investment in Haiti. (references) | |
Travel | Slovak Rep | The workweek runs Monday through Friday (40 working hours). (references) |
Mexico | The rainy season in Mexico City starts in May or June and runs through September. (references) | |
Korea | By attempting to carry counterfeit goods through U.S. Customs, one runs the risk of having them confiscated. (references) | |
Women | Brazil | Each state Secretariat for Public Security runs "women's stations" (delegacias da mulher). (references) |
Tunisia | The National Union of Tunisian Women (UNFT) is a government-sponsored organization that runs centers to assist women and children in difficulty. (references) | |
Barbados | The Business and Professional Women's Club runs a crisis center staffed by 30 trained counselors and provides legal and medical referral services. (references) | |
Worker Rights | Bangladesh | The BNWLA runs a shelter home for trafficked women and children that provides health care, counseling, and training. (references) |
Tajikistan | The NGO "Women Scientists" runs a crisis center for abused women, which provides services to trafficked women as well. (references) | |
Pakistan | The ILO runs a program that aims to decrease child labor in the carpet industry by promoting educational opportunities for children. (references) | |
Lexicography | Devil's Dictionary | CONTROVERSY, n. A battle in which spittle or ink replaces the injurious cannon-ball and the inconsiderate bayonet. In controversy with the facile tongue -- That bloodless warfare of the old and young -- So seek your adversary to engage That on himself he shall exhaust his rage, And, like a snake that's fastened to the ground, With his own fangs inflict the fatal wound. You ask me how this miracle is done? Adopt his own opinions, one by one, And taunt him to refute them; in his wrath He'll sweep them pitilessly from his path. Advance then gently all you wish to prove, Each proposition prefaced with, "As you've So well remarked," or, "As you wisely say, And I cannot dispute," or, "By the way, This view of it which, better far expressed, Runs through your argument." Then leave the rest To him, secure that he'll perform his trust And prove your views intelligent and just. Conmore Apel Brune |
Source: compiled by the editor from ICON Group International, Inc.; see credits. | ||
| Speaker | Phrase(s) |
Dennis Miller | For all I know, the engine runs on the shrieking souls of the damned. |
Rush Limbaugh | Congress talks and runs for cover when things get hot. |
Source: compiled by the editor from various references; see credits. | |
| "RUNS" is generally used as a lexical verb (-s form) -- approximately 70.31% of the time. "RUNS" is used about 3,620 times out of a sample of 100 million words spoken or written in English. Its rank is based on over 700,000 words used in the English language. Some parts-of-speech are not covered due to the samples used by the British National Corpus. (note: percents less than one-hundredth of one percent have been omitted) |
| Parts of Speech | Percent | Usage per 100 Million Words | Rank in English |
| Lexical Verb (-s form) | 70.31% | 2,545 | 3,583 |
| Noun (plural) | 29.66% | 1,074 | 7,000 |
| Noun (proper) | 0.03% | 1 | 339,140 |
| Total | 100.00% | 3,620 | N/A |
Source: compiled by the editor from several corpora; see credits.
| The following table summarizes names derived from the word "RUNS". | |||
| Name | Gender | Language | Meaning |
| Achzib | N/A | Biblical | One that runs |
| Jubal | N/A | Biblical | He that runs |
| Yuval | N/A | Jewish | He that runs |
| Source: compiled by the editor from various references.
| |||
Expressions using "RUNS": he that runs may read ♦ it runs in the family ♦ one's course runs smooth ♦ the writ runs ♦ time runs against ♦ time runs out. Additional references. | |
| Hypenated Usage | |
Ending with "RUNS": over-runs, rabbit-runs, re-runs. | |
Containing "RUNS": who-runs-what. | |
| Source: compiled by the editor from various references; see credits. | |
| Language | Translations for "RUNS"; alternative meanings/domain in parentheses. | |
Chinese | 班次 (number of runs or flights, order of classes or grades at school). (various references) | |
Danish | ubrudt raekke, loeb (tarsus), kører. (various references) | |
Dutch | runs, waterlopen (draws, sloughs). (various references) | |
Finnish | vesireitti (draws, sloughs), pieni joki (draws, sloughs), kulut (cost, expenses). (various references) | |
French | runs, suites, pistes, dépressions drainant les prairies. (various references) | |
German | läuft (running). (various references) | |
Greek | ροές, σειρές, ακολουθίες, δίοδοι στραγγίσεως λειμώνων (draws, sloughs). (various references) | |
Hungarian | hasmenés (diarrhea, diarrhoea, flux). (various references) | |
Indonesian | pengamuk (who runs amuck). (various references) | |
Italian | successione (consequence, order, sequence, series, succession). (various references) | |
Japanese Kanji | 点数 (credits, marks, number of items, points, score), 得点 (marks obtained, points made, score), 得点 (marks obtained, points made, score). (various references) | |
Japanese Katakana | とくてん (marks obtained, points made, privilege, score, special favor), てんすう (credits, marks, number of items, points, score). (various references) | |
Pig Latin | unsray.(various references) | |
Portuguese | terras pantanosas (draws, sloughs), sucessões, pântano (fen, flush, marish, mere, moor, morass, muskeg, quag, quagmire, sough), caganeira. (various references) | |
Romanian | ordonanţã este executorie (the writ runs), e boala familiei (it runs in the family). (various references) | |
Russian | выполнять;л)бежать;и)работать прогон (run). (various references) | |
Spanish | sucesión (issue, sequence, series, succession, train), derramadero (spillway). (various references) | |
Swedish | säsongsavvattningssänka (draws, sloughs), oavbrutna serier, köras. (various references) | |
Thai | ท้องเสีย. (various references) | |
Turkish | ishal (catharsis, diarrhea, diarrhoea, lax bowels, loose bowels, looseness, the trots), amel (accomplishment, achievement, act, action, catharsis, diarrhea, diarrhoea). (various references) | |
| Source: compiled by the editor from various translation references. | ||
Derivations | |
Words ending with "RUNS": foreruns, millruns, outruns, overruns, pressruns, reruns, underruns. (additional references) | |
| |
"RUNS" is suggested in spellcheckers for the following: Aruns, grunes, prunz, rans, ranz, renc, renes, rens, renz, Reunis, Rhuys, rins, rinz, rnnas, rones, ronis, rons, Ruas, ruens, ruhn, runc, rund, runis, runn, runz, rurn, rus, Ruus, Ruzsa, rynes, urna, Urnes, Urnst. (additional references) | |
| Source: compiled by the editor, based on several corpora (additional references). | |
| # of Phoneme Matches | Pronunciation | Word(s) rhyming with "RUNS" (pronounced ru"nz) |
| 4 | r u" n z | reruns. |
| 3 | -u" n z | buns, Duns, funs, guns, muns, nuns, ones, puns, shuns, sons, suns, tonnes, tons. |
Source: compiled by the editor (additional references); see credits. | ||
Scrabble® Enable2K-Verified Anagrams | |
Direct Anagrams: urns. | |
| Words within the letters "n-r-s-u" | |
-1 letter: nus, run, sun, uns, urn. | |
-2 letters: nu, un, us. | |
| Words containing the letters "n-r-s-u" | |
+1 letter: burns, curns, durns, knurs, nurds, nurls, nurse, ruins, runes, rungs, runts, spurn, turns. | |
+2 letters: bourns, bruins, brunts, burans, burins, churns, cornus, drunks, ensure, enures, furans, grunts, incurs, inrush, insure, inures, inurns, knaurs, knurls, lunars, mourns, nursed, nurser, nurses, onrush, prunes, prunus, purins, querns, reruns, rouens, rounds, ruanas, rumens, rusine, rutins, santur, senryu, shrunk, sprung, spurns, strung, strunt, suborn, sunder, sundry, synura, trunks, tuners, unarms, unbars, unrest, unrigs, unrips, unsure, urines, ursine. | |
| Source: compiled by the editor from various references; see credits. SCRABBLE® is a registered trademark. All intellectual property rights in and to the game are owned in the U.S.A and Canada by Hasbro Inc., and throughout the rest of the world by J.W. Spear & Sons Limited of Maidenhead, Berkshire, England, a subsidiary of Mattel Inc. Mattel and Spear are not affiliated with Hasbro. | |
| 1. Definition 2. Crosswords 3. Usage: Modern 4. Usage: Commercial | 5. Images: Slideshow 6. Images: Photo Album 7. Images: Digital Art 8. Sounds | 9. Quotations: Familiar 10. Quotations: Fiction 11. Quotations: Non-fiction 12. Quotations: Spoken | 13. Usage Frequency 14. Names: Derived from 15. Expressions 16. Translations: Modern | 17. Derivations 18. Rhymes 19. Anagrams 20. Bibliography |
Copyright © Philip M. Parker, INSEAD. Terms of Use.