refute

[ri-fyoot] /rɪˈfyut/
verb (used with object), refuted, refuting.
1.
to prove to be false or erroneous, as an opinion or charge.
2.
to prove (a person) to be in error.
Origin
1505-15; < Latin refūtāre to check, suppress, refute, rebut, equivalent to re- re- + -fūtāre presumably, “to beat” (attested only with the prefixes con- and re-; cf. confute)
Related forms
refutable
[ri-fyoo-tuh-buh l, ref-yuh-tuh-] /rɪˈfyu tə bəl, ˈrɛf yə tə-/ (Show IPA),
adjective
refutability, noun
refutably, adverb
refuter, noun
self-refuted, adjective
self-refuting, adjective
unrefutable, adjective
unrefutably, adverb
unrefuted, adjective
unrefuting, adjective
Can be confused
deny, disapprove, disprove, rebut, refute (see synonym study at deny)
dispute, refute.
repudiate, refute, refudiate (see word story at refudiate)
Synonyms
1. disprove, rebut. 1, 2. confute.
Examples from the web for refutable
  • In other words: show some actual, valid, repeatable and refutable science and we'll believe you.
  • However, this presumption of objectivity is refutable based on a persuasive showing by a complainant in a particular instance.
  • There is a safe harbor and refutable presumption provision for qualified mortgages.
British Dictionary definitions for refutable

refute

/rɪˈfjuːt/
verb
1.
(transitive) to prove (a statement, theory, charge, etc) of (a person) to be false or incorrect; disprove
2.
to deny (a claim, charge, allegation, etc)
Derived Forms
refutable (ˈrɛfjʊtəbəl; rɪˈfjuː-) adjective
refutability (ˌrɛfjʊtəˈbɪlɪtɪ; rɪˌfjuː-) noun
refutably, adverb
refuter, noun
Usage note
The use of refute to mean deny is thought by many people to be incorrect
Word Origin
C16: from Latin refūtāre to rebut
Word Origin and History for refutable

refute

v.

1510s, "refuse, reject," from Middle French réfuter (16c.) and directly from Latin refutare "drive back; rebut, disprove; repress, repel, resist, oppose," from re- "back" (see re-) + -futare "to beat," probably from PIE root *bhau- "to strike down" (see bat (n.1)).

Meaning "prove wrong" dates from 1540s. Since c.1964 linguists have frowned on the subtle shift in meaning towards "to deny," as it is used in connection with allegation. Related: Refuted; refuting.

refutable in Technology


In lazy functional languages, a refutable pattern is one which may fail to match. An expression being matched against a refutable pattern is first evaluated to head normal form (which may fail to terminate) and then the top-level constructor of the result is compared with that of the pattern. If they are the same then any arguments are matched against the pattern's arguments otherwise the match fails.
An irrefutable pattern is one which always matches. An attempt to evaluate any variable in the pattern forces the pattern to be matched as though it were refutable which may fail to match (resulting in an error) or fail to terminate.
Patterns in Haskell are normally refutable but may be made irrefutable by prefixing them with a tilde (~). For example,
(\ (x,y) -> 1) undefined ==> undefined (\ ~(x,y) -> 1) undefined ==> 1
Patterns in Miranda are refutable, except for tuples which are irrefutable. Thus
g [x] = 2 g undefined ==> undefined
f (x,y) = 1 f undefined ==> 1
Pattern bindings in local definitions are irrefutable in both languages:
h = 1 where [x] = undefined ==> 1 Irrefutable patterns can be used to simulate unlifted products because they effectively ignore the top-level constructor of the expression being matched and consider only its components.