Skip to main content

Word that describes a problem that is missing a precondition


I'm an engineer, and sometimes I want to describe a problem that is unresolvable in its current state. The problem might be easy, or somewhat complex, but the key aspects of it are understood and it cannot be solved without changing some other condition.


An example:



  • Deliver this physical letter from our location in the US to this address in Cambodia.
    It must arrive within 10 minutes.


This problem is understandable, but it is not (practically?) possible. If the requirements are changed to allow digital transmission, it can be done.


Another example, emphasizing that the problem is not too little information, but competing requirements which are incongruent with a single solution:



  • Describe a physical object which meets all the following criteria:
    Is as big as bread basket
    Is colored red
    Is invisible


In this case, coloring the thing and having the thing be invisible are incompatible.


Or the classic:



  • Car Repair:
    Fast
    Cheap
    Done Right


Choose any 2, as the joke goes. All 3 are at the same time are... insoluble? irresolvable? This is the word I'm looking for.


Hopefully these analogies communicate my point, I wanted to avoid tech jargon.


These problems could be described as:



  • Inextricable -- "Too involved or complicated to solve. Extremely intricate." Not really. Complexity is not in the way of a solution here.

  • Inscrutable -- "Incapable of being investigated, analyzed, or scrutinized; impenetrable. Not easily understood; mysterious; unfathomable:". Closer, but the definition implies some complexity in the problem itself which I don't want to communicate.

  • Unsolvable -- "[Not] capable of being solved, as a problem.". Completely accurate, but could be more descriptive. Why isn't the problem solvable?


Similar: Insolvable, insoluble, and unsolvable




Comments

Popular posts from this blog

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

A man has a garden measuring 84 meters by 56 meters. He divides it into the minimum number of square plots. What is the length of the square plots?

We wish to divide this man's garden into the minimum number of square plots possible. A square has all four sides with the same length.Our garden is a rectangle, so the answer is clearly not 1 square plot. If we choose the wrong length for our squares, we may end up with missing holes or we may not be able to fit our squares inside the garden. So we have 84 meters in one direction and 56 meters in the other direction. When we start dividing the garden in square plots, we are "filling" those lengths in their respective directions. At each direction, there must be an integer number of squares (otherwise, we get holes or we leave the garden), so that all the square plots fill up the garden nicely. Thus, our job here is to find the greatest common divisor of 84 and 56. For this, we prime factor both of them: `56 = 2*2*2*7` `84 = 2*2*3*7` We can see that the prime factors and multiplicities in common are `2*2*7 = 28` . This is the desired length of the square plots. If you wi...