0%

13-letter words containing h, e, y, m, a, n

  • aluminothermy — a process for reducing metallic oxides using finely divided aluminium powder. The mixture of aluminium and the oxide is ignited, causing the aluminium to be oxidized and the metal oxide to be reduced to the metal
  • aminophylline — a derivative of theophylline that relaxes smooth muscle and is used mainly to dilate the airways in the treatment of asthma and emphysema
  • amphictyonies — Plural form of amphictyony.
  • anthropometry — the comparative study of sizes and proportions of the human body
  • anywhere from — any quantity, time, degree, etc, above a specified limit
  • bathylimnetic — (of an organism) living in the depths of lakes and marshes
  • brahminy kite — a common kite, Haliastur indus, of southern Asia and the southwest Pacific islands, having reddish-brown plumage with a white head and breast.
  • chance-medley — a sudden quarrel in which one party kills another; unintentional but not blameless killing
  • chemotaxonomy — the taxonomy of species of organisms based on biochemical characteristics
  • chimney place — an open hearth.
  • chimney stack — A chimney stack is the brick or stone part of a chimney that is above the roof of a building.
  • chimneybreast — the wall or walls that surround the base of a chimney or fireplace
  • chrysanthemum — A chrysanthemum is a large garden flower with many long, thin petals.
  • close harmony — a type of singing in which all the parts except the bass lie close together and are confined to the compass of a tenth
  • come in handy — If something comes in handy, it is useful in a particular situation.
  • dimethylamine — a colourless strong-smelling gas produced from ammonia and methanol, used to produce many industrial and pharmaceutical chemicals
  • diphenylamine — a colorless, crystalline, slightly water-soluble benzene derivative, C 12 H 11 N, used chiefly in the preparation of various dyes, as a stabilizer for nitrocellulose propellants, and for the detection of oxidizing agents in analytical chemistry.
  • domain theory — (theory)   A branch of mathematics introduced by Dana Scott in 1970 as a mathematical theory of programming languages, and for nearly a quarter of a century developed almost exclusively in connection with denotational semantics in computer science. In denotational semantics of programming languages, the meaning of a program is taken to be an element of a domain. A domain is a mathematical structure consisting of a set of values (or "points") and an ordering relation, <= on those values. Domain theory is the study of such structures. ("<=" is written in LaTeX as \subseteq) Different domains correspond to the different types of object with which a program deals. In a language containing functions, we might have a domain X -> Y which is the set of functions from domain X to domain Y with the ordering f <= g iff for all x in X, f x <= g x. In the pure lambda-calculus all objects are functions or applications of functions to other functions. To represent the meaning of such programs, we must solve the recursive equation over domains, D = D -> D which states that domain D is (isomorphic to) some function space from D to itself. I.e. it is a fixed point D = F(D) for some operator F that takes a domain D to D -> D. The equivalent equation has no non-trivial solution in set theory. There are many definitions of domains, with different properties and suitable for different purposes. One commonly used definition is that of Scott domains, often simply called domains, which are omega-algebraic, consistently complete CPOs. There are domain-theoretic computational models in other branches of mathematics including dynamical systems, fractals, measure theory, integration theory, probability theory, and stochastic processes. See also abstract interpretation, bottom, pointed domain.
  • dysmenorrheal — painful menstruation.
  • dysmenorrhoea — painful menstruation.
  • enantiomorphy — the state of being enantiomorphic
  • encephalotomy — The dissection of the brain.
  • endolymphatic — (anatomy) Pertaining to, or containing, endolymph.
  • fly fisherman — one who fishes by fly-casting
  • grandmotherly — of or characteristic of a grandmother.
  • haemodynamics — a branch of physiology that deals with the circulation of the blood
  • he's your man — he's the person needed (for a particular task, role, job, etc)
  • heavy element — any element heavier than helium
  • hemp agrimony — a European composite plant, Eupatorium cannabinum, having dull purplish flowers.
  • hexamethylene — cyclohexane.
  • honey stomach — the crop of an ant, bee, or other hymenopterous insect, serving as a reservoir for honeydew and nectar, especially the enlarged crop of a honeybee in which nectar is acted on by enzymes to form honey.
  • human ecology — ecology (def 4).
  • hydroxylamine — an unstable, weakly basic, crystalline compound, NH 3 O, used as a reducing agent, analytical reagent, and chemical intermediate.
  • hymenopterans — Plural form of hymenopteran.
  • hymenorrhaphy — (medicine) Reconstructive surgery in which a woman's hymen is restored to the unbroken condition ordinarily characteristic of virginity.
  • hypermagnetic — (physics) Extremely magnetic.
  • hypermutation — (uncountable) Frequent mutation.
  • hypernatremia — an abnormally high concentration of sodium in the blood.
  • hypernephroma — Renal cell carcinoma.
  • hyperromantic — extremely or excessively romantic
  • hyperurbanism — a pronunciation or grammatical form or usage produced by a speaker of one dialect according to an analogical rule formed by comparison of the speaker's own usage with that of another, more prestigious, dialect and often applied in an inappropriate context, especially in an effort to avoid sounding countrified, rural, or provincial, as in the pronunciation of the word two (to̅o̅) as (tyo̅o̅).
  • hyponatraemia — a condition in which there is a low concentration of sodium in the blood
  • immunotherapy — treatment designed to produce immunity to a disease or enhance the resistance of the immune system to an active disease process, as cancer.
  • initial rhyme — beginning rhyme.
  • lymphadenitis — inflammation of a lymphatic gland.
  • machine cycle — (processor)   The four steps which the CPU carries out for each machine language instruction: fetch, decode, execute, and store. These steps are performed by the control unit, and may be fixed in the logic of the CPU or may be programmed as microcode which is itself usually fixed (in ROM) but may be (partially) modifiable (stored in RAM). The fetch cycle places the current program counter contents (the address of the next instruction to execute) on the address bus and reads in the word at that location into the instruction register (IR). In RISC CPUs instructions are usually a single word but in other architectures an instruction may be several words long, necessitating several fetches. The decode cycle uses the contents of the IR to determine which gates should be opened between the CPU's various functional units and busses and what operation the ALU(s) should perform (e.g. add, bitwise and). Each gate allows data to flow from one unit to another (e.g. from register 0 to ALU input 1) or enables data from one output onto a certain bus. In the simplest case ("horizontal encoding") each bit of the instruction register controls a single gate or several bits may control the ALU operation. This is rarely used because it requires long instruction words (such an architecture is sometimes called a very long instruction word architecture). Commonly, groups of bits from the IR are fed through decoders to control higher level aspects of the CPU's operation, e.g. source and destination registers, addressing mode and ALU operation. This is known as vertical encoding. One way RISC processors gain their advantage in speed is by having simple instruction decoding which can be performed quickly. The execute cycle occurs when the decoding logic has settled and entails the passing of values between the various function units and busses and the operation of the ALU. A simple instruction will require only a single execute cycle whereas a complex instruction (e.g. subroutine call or one using memory indirect addressing) may require three or four. Instructions in a RISC typically (but not invariably) take only a single cycle. The store cycle is when the result of the instruction is written to its destination, either a register or a memory location. This is really part of the execute cycle because some instructions may write to multiple destinations as part of their execution.
  • macrencephaly — The presence of an abnormally large brain.
  • mango chutney — chutney which contains or is made from the fruit mango
  • martini-henry — a breech-loaded .45 caliber rifle adopted in 1871 as the standard British service weapon, using a center-fire metallic cartridge filled with black powder.
  • merchant navy — commercial ships

On this page, we collect all 13-letter words with H-E-Y-M-A-N. It’s easy to find right word with a certain length. It is the easiest way to find 13-letter word that contains in H-E-Y-M-A-N to use in Scrabble or Crossword puzzles

Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?