TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What's a good problem solving framework/method?

29 点作者 dynamohk超过 3 年前
Just looking for thoughts on this. Any books or blog posts are much appreciated.

10 条评论

mat_couthon超过 3 年前
This is something I came up with. It’s an iterative method to come up with solutions at the right level of abstraction (usually people solve problems that are too specific, or feel powerless to solve problems that are too large).<p>I’m using here as an example the problem that India faced when they had massive heat waves. Solution in the end was to paint their houses (and maybe streets?) with a light repelling paint. Super cheap and super effective.<p><pre><code> 1. Identify pain — What’s hurting me? What am I trying to solve? (people dying from heat wave in india) 2. List assumptions — What are my assumptions about the problem&#x2F;state of the world? (heat kills people &#x2F; people dying is bad &#x2F; heat waves will continue to occur &#x2F; we have no control over heat at the scale of cities&#x2F;countries) 3. Challenge assumptions — Which assumptions, if removed, change the equation? (first 3 assumptions, if removed, result in deciding to do nothing; final assumption if challenged, opens possibilities) 4. Restate problem, per challenged assumption — What is the new problem definition, if I remove this assumption? (how do we make the city less hot) 5. If no solutions come up either do (3) again, or go a level higher by doing (1) again.</code></pre>
f0e4c2f7超过 3 年前
This is heavily weighted towards computing &#x2F; programing.<p>Roughly:<p>1: Find out what fixed looks like. When did it stop working? Has it ever worked?<p>2: Form theories about why it may not be working (googling is part of forming theories)<p>3: Pick what you consider to be the most likely problem, or the fastest theory to test.<p>4: Test the theory (May require googling to figure out a falsifiable way to test)<p>5: if that was not the problem, consider if your test falsified any more theories or changed the liklihood of other, then move on to the next test<p>6: Repeat until you&#x27;re out of testable theories.<p>7: Come up with more testable theories (if you already tried everything you could think of and google, start asking people online and reading books about the problem.)<p>8: Keep testing theories.<p>9: Fix the problem.<p>10: Celebrate.
评论 #29968482 未加载
rramadass超过 3 年前
* How to Solve it – A New Aspect of Mathematical Method by George Polya.<p>* The Thinker&#x27;s Toolkit: 14 Powerful Techniques for Problem Solving by Morgan Jones.<p>* The Model Thinker: What You Need to Know to Make Data Work for You by Scott Page.<p>* The Decision Book: Fifty models for strategic thinking by Krogerus &amp; Tschappeler.
brucetim超过 3 年前
Kepner-Tregoe (&quot;K-T&quot;) is something our IT department was given training in a few years ago. It&#x27;s not specifically for software&#x2F;IT though; it&#x27;s a pretty generic framework. <a href="https:&#x2F;&#x2F;kepner-tregoe.com" rel="nofollow">https:&#x2F;&#x2F;kepner-tregoe.com</a><p>While searching for it online, I also came across <a href="https:&#x2F;&#x2F;www.uapb.edu&#x2F;sites&#x2F;www&#x2F;Uploads&#x2F;Assessment&#x2F;webinar&#x2F;session%203&#x2F;13%20Problem%20Solving%20Models.pdf" rel="nofollow">https:&#x2F;&#x2F;www.uapb.edu&#x2F;sites&#x2F;www&#x2F;Uploads&#x2F;Assessment&#x2F;webinar&#x2F;se...</a><p>Hope those help.
elcapitan超过 3 年前
The Feynman Problem-Solving Algorithm:<p><pre><code> 1. Write down the problem. 2. Think very hard. 3. Write down the answer.</code></pre>
评论 #29959289 未加载
atoav超过 3 年前
A very simple one for most personal problems is just asking &quot;Why&quot; as long as you get to the bottom of things.<p>&quot;I need to solve X now&quot; &quot;Why?&quot; &quot;Because it blocks me from finishing project Y&quot; &quot;Why?&quot; &quot;Because without it I won&#x27;t be able to dy Z&quot; &quot;Why?&quot; &quot;Oh&quot;
leashless超过 3 年前
Triz is a Russian engineering problem solving methodology <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;TRIZ" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;TRIZ</a> it&#x27;s incredibly methodical and basically brute forces creative insight.
mindcrime超过 3 年前
A3, or TRIZ?<p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;A3_problem_solving" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;A3_problem_solving</a><p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;TRIZ" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;TRIZ</a>
mathandlogic超过 3 年前
Math and logic are pretty good methods. But if you&#x27;re looking for something more specific then there is something called TRIZ: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;TRIZ" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;TRIZ</a>.
ouid超过 3 年前
A*