About The Word Monad
Learn about the word Monad to help solve your crossword puzzle. Discover Monad definitions and meaning, origins, synonyms, related terms and more at the free Crossword Dictionary.
Monad
| Monad Definition And Meaning |
|---|
What's The Definition Of Monad?
[n] a singular metaphysical entity from which material properties are said to derive
[n] an atom having a valence of one Synonyms | Synonyms for Monad: monas Related Terms | Find terms related to Monad: ace | air | an existence | atom | atomic particles | being | body | brute matter | building block | chemical element | component | constituent | creature | critter | earth | electron | element | elementary particle | elementary unit | entelechy | entity | fire | fundamental particle | hyle | hypostasis | I | individual | ion | life | material | material world | materiality | matter | meson | molecule | natural world | nature | no other | none else | nothing else | nought beside | nuclear particle | object | one | one and only | organism | person | persona | personality | physical world | plenum | proton | quark | something | soul | stuff | substance | substratum | the four elements | thing | unit | unit of being | water See Also | 1 | ace | atom | I | one | single | unity Monad In Webster's Dictionary \Mon"ad\, n. [L. monas, -adis, a unit, Gr. ?, ?, fr. ?
alone.]
1. An ultimate atom, or simple, unextended point; something
ultimate and indivisible.
2. (Philos. of Leibnitz) The elementary and indestructible
units which were conceived of as endowed with the power to
produce all the changes they undergo, and thus determine
all physical and spiritual phenomena.
3. (Zo["o]l.) One of the smallest flangellate Infusoria;
esp., the species of the genus Monas, and allied genera.
4. (Biol.) A simple, minute organism; a primary cell, germ,
or plastid.
5. (Chem.) An atom or radical whose valence is one, or which
can combine with, be replaced by, or exchanged for, one
atom of hydrogen.
{Monad deme} (Biol.), in tectology, a unit of the first order
of individuality.
unitM :: a -> M a bindM :: M a -> (a -> M b) -> M b type S a = State -> (a, State) unitS a = \ s0 -> (a, s0) m `bindS` k = \ s0 -> let (a,s1) = m s0 in k a s1 m `bindS` k mapM :: (a -> M b) -> [a] -> M [b] mapM f [] = returnM [] mapM f (x:xs) = f x `thenM` ( \ x2 -> mapM f xs `thenM` ( \ xs2 -> returnM (x2 : xs2) )) |
More Crossword Puzzle Words
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z
Cross Word Of The Day
- Galician ‐ the dialect of Portuguese (sometimes regarded as a dialect of…
- Militarism ‐ aggressiveness that involves the threat of using…
- Gallop ‐ a fast gait of a horse; a two-beat stride during which all four…
- Eastern roman empire ‐ a continuation of the Roman Empire in the East after AD 330 when…
- Ironic ‐ characterized by often poignant difference or incongruity between…
- Japanese barberry ‐ compact deciduous shrub having persistent red berries; widespread…
- Cambodian ‐ a native or inhabitant of Cambodia [adj] of or relating to or…
- Fix-it shop ‐ a shop specializing in repairs and…
- Liverish ‐ irritable as if suffering from indigestion [adj] suffering from…
- Sheet pile ‐ a pile in a row of piles driven side by side to retain earth…