problem solving information system

1.2 Problem Solving: The Most Important Skill in Information Systems

An example of a problem solving that instead exploits an opportunity is a brick and mortar business, such as a furniture store, that sees an opportunity to increase sales by adding the ability to sell online. An IS professional exploits that opportunity by determining and designing the best option for selling online. Designing a solution to the opportunity facing the furniture store is considered “problem solving.”

Related to problem solving, employers have indicated the main capabilities expected of all IS graduates. 1 These include the ability to:

Improve Organizational Processes

Exploit Opportunities Created by Technology Innovations

Understand and Address Information Requirements

Identify and Evaluate Solution and Sourcing Alternatives

Design and Manage Enterprise Architecture

Secure Data and Infrastructure

Understand, Manage, and Control IT Risks

The capabilities in the list above may be somewhat unfamiliar to you right now, but recognize that the ones that have been italicized require problem-solving skills. Therefore, regardless of the IS classes that an IS graduate may take when completing a degree, over half of the capabilities employers expect of graduates involve the ability to solve problems in a technology context. For example, improving organizational processes means that an IS professional needs to first understand what is wrong with an organizational process, and then design a solution. Similarly, exploiting an opportunity means that an IS professional must understand the opportunity, then design a solution with a technology that takes advantage of the opportunity. Understanding and addressing information requirements means that an IS professional needs to understand what is wanted from stakeholders, and then meet those wants through a solution that the professional designs. Lastly, identifying and evaluating solutions and sourcing alternatives means that an IS professional first understands a problem to be solved, and then thoughtfully selects the best way to solve the problem, which will include alternatives such as either building custom software from scratch or buying existing software that other software companies have already created.

The job placement statistics for IS graduates provide further evidence of the importance of problem-solving skills. According to a 2019 job index report sponsored by AIS and Temple University, the leading job categories for graduates include the following: 2

IT Consulting

Computer Systems Analyst

Data Analytics

Software Development

Information Security

The primary responsibility of professionals working in IT Consulting and Computer Systems Analyst jobs is to solve problems for organizations using technology. Together, these two job categories represent over one-fourth of the jobs in IS. Other job roles in IS also require significant problem-solving skills, even if those skills aren't considered a primary responsibility. Consider the role of a software developer. They might think of their job as merely writing code, but in reality, they are asked to do far more than this by providing solutions to important organizational problems. For example, they may be asked to solve the business problem of not having web-based payment options for customers, or they may be asked to solve the problem of expensive and inefficient public transportation (think of Uber as a solution), or they may be asked to solve the problem of a sales team that has no means of accessing organizational data when they are away from the office (see Vignette 1.2 for an example of a problem that was solved in a university setting).

Any time a developer is required to build a solution to a problem, they first have to research it and determine what they need to do. In other words, they have to solve the problem conceptually before they can physically implement its solution. That is precisely what this book teaches IS professionals to do: solve problems conceptually before implementing them physically.

One type of organization all students are familiar with is a university, and one task they are all familiar with is registering for classes. Today, most students enjoy the relative ease of course registration. It involves an electronic list of courses available, and often it reveals the number of seats still available in a given section of a course. Adding and dropping a class can be as easy as clicking a button.

However, it wasn’t always so simple. Students used to fill out cards for classes that they wanted to register for and then have to wait in lines for each class to submit their cards. Imagine the number of headaches this caused: needing to be in a physical location to submit your card, finding out the class you wanted was full when you got to the front of the line, selecting another class, and starting the process all over again. Moving class registration online wasn’t just a technical task (e.g., programming a website); it was also a way to remove a lot of pain points for a lot of people—it was solving a problem. Just as IS professionals have solved a registration problem for universities, IS professionals today help organizations address an ever-evolving list of problems.

Want to try our built-in assessments?

  • Insert Assessment
  • Insert Material

What Is Problem Solving? How Software Engineers Approach Complex Challenges

HackerRank AI Promotion

From debugging an existing system to designing an entirely new software application, a day in the life of a software engineer is filled with various challenges and complexities. The one skill that glues these disparate tasks together and makes them manageable? Problem solving . 

Throughout this blog post, we’ll explore why problem-solving skills are so critical for software engineers, delve into the techniques they use to address complex challenges, and discuss how hiring managers can identify these skills during the hiring process. 

What Is Problem Solving?

But what exactly is problem solving in the context of software engineering? How does it work, and why is it so important?

Problem solving, in the simplest terms, is the process of identifying a problem, analyzing it, and finding the most effective solution to overcome it. For software engineers, this process is deeply embedded in their daily workflow. It could be something as simple as figuring out why a piece of code isn’t working as expected, or something as complex as designing the architecture for a new software system. 

In a world where technology is evolving at a blistering pace, the complexity and volume of problems that software engineers face are also growing. As such, the ability to tackle these issues head-on and find innovative solutions is not only a handy skill — it’s a necessity. 

The Importance of Problem-Solving Skills for Software Engineers

Problem-solving isn’t just another ability that software engineers pull out of their toolkits when they encounter a bug or a system failure. It’s a constant, ongoing process that’s intrinsic to every aspect of their work. Let’s break down why this skill is so critical.

Driving Development Forward

Without problem solving, software development would hit a standstill. Every new feature, every optimization, and every bug fix is a problem that needs solving. Whether it’s a performance issue that needs diagnosing or a user interface that needs improving, the capacity to tackle and solve these problems is what keeps the wheels of development turning.

It’s estimated that 60% of software development lifecycle costs are related to maintenance tasks, including debugging and problem solving. This highlights how pivotal this skill is to the everyday functioning and advancement of software systems.

Innovation and Optimization

The importance of problem solving isn’t confined to reactive scenarios; it also plays a major role in proactive, innovative initiatives . Software engineers often need to think outside the box to come up with creative solutions, whether it’s optimizing an algorithm to run faster or designing a new feature to meet customer needs. These are all forms of problem solving.

Consider the development of the modern smartphone. It wasn’t born out of a pre-existing issue but was a solution to a problem people didn’t realize they had — a device that combined communication, entertainment, and productivity into one handheld tool.

Increasing Efficiency and Productivity

Good problem-solving skills can save a lot of time and resources. Effective problem-solvers are adept at dissecting an issue to understand its root cause, thus reducing the time spent on trial and error. This efficiency means projects move faster, releases happen sooner, and businesses stay ahead of their competition.

Improving Software Quality

Problem solving also plays a significant role in enhancing the quality of the end product. By tackling the root causes of bugs and system failures, software engineers can deliver reliable, high-performing software. This is critical because, according to the Consortium for Information and Software Quality, poor quality software in the U.S. in 2022 cost at least $2.41 trillion in operational issues, wasted developer time, and other related problems.

Problem-Solving Techniques in Software Engineering

So how do software engineers go about tackling these complex challenges? Let’s explore some of the key problem-solving techniques, theories, and processes they commonly use.

Decomposition

Breaking down a problem into smaller, manageable parts is one of the first steps in the problem-solving process. It’s like dealing with a complicated puzzle. You don’t try to solve it all at once. Instead, you separate the pieces, group them based on similarities, and then start working on the smaller sets. This method allows software engineers to handle complex issues without being overwhelmed and makes it easier to identify where things might be going wrong.

Abstraction

In the realm of software engineering, abstraction means focusing on the necessary information only and ignoring irrelevant details. It is a way of simplifying complex systems to make them easier to understand and manage. For instance, a software engineer might ignore the details of how a database works to focus on the information it holds and how to retrieve or modify that information.

Algorithmic Thinking

At its core, software engineering is about creating algorithms — step-by-step procedures to solve a problem or accomplish a goal. Algorithmic thinking involves conceiving and expressing these procedures clearly and accurately and viewing every problem through an algorithmic lens. A well-designed algorithm not only solves the problem at hand but also does so efficiently, saving computational resources.

Parallel Thinking

Parallel thinking is a structured process where team members think in the same direction at the same time, allowing for more organized discussion and collaboration. It’s an approach popularized by Edward de Bono with the “ Six Thinking Hats ” technique, where each “hat” represents a different style of thinking.

In the context of software engineering, parallel thinking can be highly effective for problem solving. For instance, when dealing with a complex issue, the team can use the “White Hat” to focus solely on the data and facts about the problem, then the “Black Hat” to consider potential problems with a proposed solution, and so on. This structured approach can lead to more comprehensive analysis and more effective solutions, and it ensures that everyone’s perspectives are considered.

This is the process of identifying and fixing errors in code . Debugging involves carefully reviewing the code, reproducing and analyzing the error, and then making necessary modifications to rectify the problem. It’s a key part of maintaining and improving software quality.

Testing and Validation

Testing is an essential part of problem solving in software engineering. Engineers use a variety of tests to verify that their code works as expected and to uncover any potential issues. These range from unit tests that check individual components of the code to integration tests that ensure the pieces work well together. Validation, on the other hand, ensures that the solution not only works but also fulfills the intended requirements and objectives.

Explore verified tech roles & skills.

The definitive directory of tech roles, backed by machine learning and skills intelligence.

Explore all roles

Evaluating Problem-Solving Skills

We’ve examined the importance of problem-solving in the work of a software engineer and explored various techniques software engineers employ to approach complex challenges. Now, let’s delve into how hiring teams can identify and evaluate problem-solving skills during the hiring process.

Recognizing Problem-Solving Skills in Candidates

How can you tell if a candidate is a good problem solver? Look for these indicators:

  • Previous Experience: A history of dealing with complex, challenging projects is often a good sign. Ask the candidate to discuss a difficult problem they faced in a previous role and how they solved it.
  • Problem-Solving Questions: During interviews, pose hypothetical scenarios or present real problems your company has faced. Ask candidates to explain how they would tackle these issues. You’re not just looking for a correct solution but the thought process that led them there.
  • Technical Tests: Coding challenges and other technical tests can provide insight into a candidate’s problem-solving abilities. Consider leveraging a platform for assessing these skills in a realistic, job-related context.

Assessing Problem-Solving Skills

Once you’ve identified potential problem solvers, here are a few ways you can assess their skills:

  • Solution Effectiveness: Did the candidate solve the problem? How efficient and effective is their solution?
  • Approach and Process: Go beyond whether or not they solved the problem and examine how they arrived at their solution. Did they break the problem down into manageable parts? Did they consider different perspectives and possibilities?
  • Communication: A good problem solver can explain their thought process clearly. Can the candidate effectively communicate how they arrived at their solution and why they chose it?
  • Adaptability: Problem-solving often involves a degree of trial and error. How does the candidate handle roadblocks? Do they adapt their approach based on new information or feedback?

Hiring managers play a crucial role in identifying and fostering problem-solving skills within their teams. By focusing on these abilities during the hiring process, companies can build teams that are more capable, innovative, and resilient.

Key Takeaways

As you can see, problem solving plays a pivotal role in software engineering. Far from being an occasional requirement, it is the lifeblood that drives development forward, catalyzes innovation, and delivers of quality software. 

By leveraging problem-solving techniques, software engineers employ a powerful suite of strategies to overcome complex challenges. But mastering these techniques isn’t simple feat. It requires a learning mindset, regular practice, collaboration, reflective thinking, resilience, and a commitment to staying updated with industry trends. 

For hiring managers and team leads, recognizing these skills and fostering a culture that values and nurtures problem solving is key. It’s this emphasis on problem solving that can differentiate an average team from a high-performing one and an ordinary product from an industry-leading one.

At the end of the day, software engineering is fundamentally about solving problems — problems that matter to businesses, to users, and to the wider society. And it’s the proficient problem solvers who stand at the forefront of this dynamic field, turning challenges into opportunities, and ideas into reality.

This article was written with the help of AI. Can you tell which parts?

Get started with HackerRank

Over 2,500 companies and 40% of developers worldwide use HackerRank to hire tech talent and sharpen their skills.

Recommended topics

  • Hire Developers
  • Problem Solving

Abstract, futuristic image generated by AI

Does a College Degree Still Matter for Developers in 2024?

Back Home

  • Search Search Search …
  • Search Search …

Taking a systems thinking approach to problem solving

systems thinking approach to problem solving

Systems thinking is an approach that considers a situation or problem holistically and as part of an overall system which is more than the sum of its parts. Taking the big picture perspective, and looking more deeply at underpinnings, systems thinking seeks and offers long-term and fundamental solutions rather than quick fixes and surface change.

Whether in environmental science, organizational change management, or geopolitics, some problems are so large, so complicated and so enduring that it’s hard to know where to begin when seeking a solution.

A systems thinking approach might be the ideal way to tackle essentially systemic problems. Our article sets out the basic concepts and ideas.

What is systems thinking?

Systems thinking is an approach that views an issue or problem as part of a wider, dynamic system. It entails accepting the system as an entity in its own right rather than just the sum of its parts, as well as understanding how individual elements of a system influence one another.

When we consider the concepts of a car, or a human being we are using a systems thinking perspective. A car is not just a collection of nuts, bolts, panels and wheels. A human being is not simply an assembly of bones, muscles, organs and blood.

In a systems thinking approach, as well as the specific issue or problem in question, you must also look at its wider place in an overall system, the nature of relationships between that issue and other elements of the system, and the tensions and synergies that arise from the various elements and their interactions.

The history of systems thinking is itself innately complex, with roots in many important disciplines of the 20th century including biology, computing and data science. As a discipline, systems thinking is still evolving today.

How can systems thinking be applied to problem solving?

A systems thinking approach to problem solving recognizes the problem as part of a wider system and addresses the whole system in any solution rather than just the problem area.

A popular way of applying a systems thinking lens is to examine the issue from multiple perspectives, zooming out from single and visible elements to the bigger and broader picture (e.g. via considering individual events, and then the patterns, structures and mental models which give rise to them).

Systems thinking is best applied in fields where problems and solutions are both high in complexity. There are a number of characteristics that can make an issue particularly compatible with a systems thinking approach:

  • The issue has high impact for many people.
  • The issue is long-term or chronic rather than a one-off incident.
  • There is no obvious solution or answer to the issue and previous attempts to solve it have failed.
  • We have a good knowledge of the issue’s environment and history through which we can sensibly place it in a systems context.

If your problem does not have most of these characteristics, systems thinking analysis may not work well in solving it.

Areas where systems thinking is often useful include health, climate change, urban planning, transport or ecology.

What is an example of a systems thinking approach to problem solving?

A tool called the iceberg mode l can be useful in learning to examine issues from a systems thinking perspective. This model frames an issue as an iceberg floating in a wider sea, with one small section above the water and three large sections unseen below.

The very tip of the iceberg, visible above the waterline, shows discrete events or occurrences which are easily seen and understood. For example, successive failures of a political party to win national elections.

Beneath the waterline and invisible, lie deeper and longer-term trends or patterns of behavior. In our example this might be internal fighting in the political party which overshadows and obstructs its public campaigning and weakens its leadership and reputation.

Even deeper under the water we can find underlying causes and supporting structures which underpin the patterns and trends.

For our failing political party, this could mean party rules and processes which encourage internal conflict and division rather than resolving them, and put off the best potential candidates from standing for the party in elections.

The electoral system in the country may also be problematic or unfair, making the party so fearful and defensive against losing its remaining support base, that it has no energy or cash to campaign on a more positive agenda and win new voters.

Mental models

At the very base of the iceberg, deepest under the water, lie the mental models that allow the rest of the iceberg to persist in this shape. These include the assumptions, attitudes, beliefs and motivations which drive the behaviors, patterns and events seen further up in the iceberg.

In this case, this could be the belief amongst senior party figures that they’ve won in the past and can therefore win again someday by repeating old campaigns. Or a widespread attitude amongst activists in all party wings that with the right party leader, all internal problems will melt away and voter preferences will turn overnight.

When is a systems thinking approach not helpful?

If you are looking for a quick answer to a simple question, or an immediate response to a single event, then systems thinking may overcomplicate the process of solving your problem and provide you with more information than is helpful, and in slower time than you need.

For example, if a volcano erupts and the local area needs to be immediately evacuated, applying a thorough systems thinking approach to life in the vicinity of an active volcano is unlikely to result in a more efficient crisis response or save more lives. After the event, systems thinking might be more constructive when considering town rebuilding, local logistics and transport links.

In general, if a problem is short-term, narrow and/or linear, systems thinking may not be the right model of thinking to use.

A final word…

The biggest problems in the real world are rarely simple in nature and expecting a quick and simple solution to something like climate change or cancer would be naive.

If you’d like to know more about applying systems thinking in real life there are many online resources, books and courses you can access, including in specific fields (e.g. FutureLearn’s course on Understanding Systems Thinking in Healthcare ).

Whether you think of it as zooming out to the big picture while retaining a focus on the small, or looking deeper under the water at the full shape of the iceberg, systems thinking can be a powerful tool for finding solutions that recognize the interactions and interdependence of individual elements in the real world.

You may also like

what is system thinking

What is Systems Thinking?

There are various approaches to solving problems that require us to analyze and interpret data. However, complex problems can require different perspectives […]

5 Ways to Apply Systems Thinking to Your Business Operations: A Strategic Guide

5 Ways to Apply Systems Thinking to Your Business Operations: A Strategic Guide

In today’s fast-paced business world, success depends on the ability to stay agile, resilient, and relevant. This is where systems thinking, an […]

Systems Thinking vs. Linear Thinking

Systems Thinking vs. Linear Thinking: Understanding the Key Differences

Systems Thinking and Linear Thinking are two approaches to problem-solving and decision-making that can significantly impact the effectiveness of a given solution. […]

Critical Thinking vs. Systems Thinking

Exploring Critical Thinking vs. Systems Thinking

There are many differences between Critical Thinking vs Systems Thinking. Critical Thinking involves examining and challenging thoughts or ideas, while Systems Thinking […]

.css-s5s6ko{margin-right:42px;color:#F5F4F3;}@media (max-width: 1120px){.css-s5s6ko{margin-right:12px;}} AI that works. Coming June 5th, Asana redefines work management—again. .css-1ixh9fn{display:inline-block;}@media (max-width: 480px){.css-1ixh9fn{display:block;margin-top:12px;}} .css-1uaoevr-heading-6{font-size:14px;line-height:24px;font-weight:500;-webkit-text-decoration:underline;text-decoration:underline;color:#F5F4F3;}.css-1uaoevr-heading-6:hover{color:#F5F4F3;} .css-ora5nu-heading-6{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;color:#0D0E10;-webkit-transition:all 0.3s;transition:all 0.3s;position:relative;font-size:16px;line-height:28px;padding:0;font-size:14px;line-height:24px;font-weight:500;-webkit-text-decoration:underline;text-decoration:underline;color:#F5F4F3;}.css-ora5nu-heading-6:hover{border-bottom:0;color:#CD4848;}.css-ora5nu-heading-6:hover path{fill:#CD4848;}.css-ora5nu-heading-6:hover div{border-color:#CD4848;}.css-ora5nu-heading-6:hover div:before{border-left-color:#CD4848;}.css-ora5nu-heading-6:active{border-bottom:0;background-color:#EBE8E8;color:#0D0E10;}.css-ora5nu-heading-6:active path{fill:#0D0E10;}.css-ora5nu-heading-6:active div{border-color:#0D0E10;}.css-ora5nu-heading-6:active div:before{border-left-color:#0D0E10;}.css-ora5nu-heading-6:hover{color:#F5F4F3;} Get early access .css-1k6cidy{width:11px;height:11px;margin-left:8px;}.css-1k6cidy path{fill:currentColor;}

  • Business strategy |
  • Problem management: 8 steps to better p ...

Problem management: 8 steps to better problem solving

Alicia Raeburn contributor headshot

Problem management is an 8 step framework most commonly used by IT teams. You can use problem management to solve for repeating major incidents. By organizing and structuring your problem solving, you can more effectively get to the root cause of high-impact problems—and devise a solution. Solving the root cause prevents recurrence and creates a repeatable solution to use on similar errors in the future.

In an IT department, errors and mishaps are part of the job. You can't always control these problems, but you can control how you respond to them with problem management. Problem management helps you solve larger problems and reduce the risk that they’ll happen again by identifying all connected problems, solving them, and planning for the future.

What is problem management?

Problem management is an 8 step framework most commonly used by IT teams. Your team can use problem management to solve for repeating major incidents. By organizing and structuring your problem solving, you can more effectively get to the root cause of high-impact problems—and devise a solution. Problem management is a process—used mostly by IT teams—to identify, react, and respond to issues. It’s not for every problem, but it’s a useful response when multiple major incidents occur that cause large work interruptions. Unlike problem solving, problem management goes beyond the initial incident to discover and dissect the root causes, preventing future incidents with permanent solutions.

The goals of problem management are to:

Prevent problems before they start.

Solve for repetitive errors.

Lessen each incident’s impact. 

Problem management vs. incident management 

Example: Someone leaves their unprotected laptop in a coffee shop, causing a security breach. The security team can use incident management to solve for this one, isolated event. In this case, the team could manually shut down the accounts connected to that laptop. If this continues to happen, IT would use problem management to solve the root of this issue—perhaps installing more security features on each company laptop so that if employees lose them, no one else can access the information.

Problem management vs. problem solving

While similar in name, problem management differs slightly from problem-solving. Problem management focuses on every aspect of the incident—identifying the root cause of the problem, solving it, and prevention. Problem solving is, as the name implies, focused solely on the solution step. 

Example: You’re launching a new password management system when it crashes—again. You don’t know if anything leaked, but you know it could contain confidential information. Plus, it’s happened before. You start the problem management process to ensure it doesn’t happen again. In that process, you’ll use problem solving as a step to fix the issue. In this case, perhaps securing confidential information before you try to launch a new software.

Problem management vs. change management 

Change management targets large transitions within your workplace, good and bad. These inevitable changes aren’t always negative, so you can’t always apply problem management as a solution. That’s where change management comes in—a framework that helps you adjust to any new scenario.

Example: Your company is transitioning to a new cloud platform. The transition happens incident-free—meaning you won’t need problem management—but you can ease the transition by implementing some change management best practices. Preparing and training team members in the new software is a good place to start.

Problem management vs. project management

Project management is the framework for larger collections of work. It’s the overarching method for how you work on any project, hit goals, and get results. You can use project management to help you with problem management, but they are not the same thing. Problem management and project management work together to solve issues as part of your problem management process.

Example: During problem management, you uncover a backend security issue that needs to be addressed—employees are using storage software with outdated security measures. To solve this, you create a project and outline the tasks from start to finish. In this case, you might need to alert senior executives, get approval to remove the software, and alert employees. You create a project schedule with a defined timeline and assign the tasks to relevant teams. In this process, you identified a desired outcome—remove the unsafe software—and solved it. That’s project management.

The 8 steps of problem management

It’s easy to get upset when problems occur. In fact, it’s totally normal. But an emotional response is not always the best response when faced with new incidents. Having a reliable system—such as problem management—removes the temptation to respond emotionally. Proactive project management gives your team a framework for problem solving. It’s an iterative process —the more you use it, the more likely you are to have fewer problems, faster response times, and better outputs. 

1. Identify the problem

During problem identification, you’re looking at the present—what’s happening right now? Here, you’ll define what the incident is and its scale. Is this a small, quick-fix, or a full overhaul? Consider using problem framing to define, prioritize, and understand the obstacles involved with these more complex problems. 

2. Diagnose the cause

Use problem analysis or root cause analysis to strategically look at the cause of a problem. Follow the trail of issues all the way back to its beginnings.

To diagnose the underlying cause, you’ll want to answer:

What factors or conditions led to the incident?

Do you see related incidents? Could those be coming from the same source?

Did someone miss a step? Are processes responsible for this problem?

3. Organize and prioritize

Now it’s time to build out your framework. Use an IT project plan to organize information in a space where everyone can make and see updates in real time. The easiest way to do this is with a project management tool where you can input ‌tasks, assign deadlines, and add dependencies to ensure nothing gets missed. To better organize your process, define:

What needs to be done? 

Who’s responsible for each aspect? If no one is, can we assign someone? 

When does each piece need to be completed?

What is the final number of incidents related to this problem?

Are any of these tasks dependent on another one? Do you need to set up dependencies ?

What are your highest priorities? How do they affect our larger business goals ? 

How should you plan for this in the future?

4. Create a workaround

If the incident has stopped work or altered it, you might need to create a workaround. This is not always necessary, but temporary workarounds can keep work on track and avoid backlog while you go through the problem management steps. When these workarounds are especially effective, you can make them permanent processes.

5. Update your known error database

Every time an incident occurs, create a known error record and add it to your known error database (KEDB). Recording incidents helps you catch recurrences and logs the solution, so you know how to solve similar errors in the future. 

[product ui] Incident log example (lists)

6. Pause for change management (if necessary)

Larger, high-impact problems might require change management. For example, if you realize the problem’s root cause is a lack of staff, you might dedicate team members to help. You can use change management to help them transition their responsibilities, see how these new roles fit in with the entire team, and determine how they will collaborate moving forward.

7. Solve the problem

This is the fun part—you get to resolve problems. At this stage, you should know exactly what you’re dealing with and the steps you need to take. But remember—with problem management, it’s not enough to solve the current problem. You’ll want to take any steps to prevent this from happening again in the future. That could mean hiring a new role to cover gaps in workflows , investing in new softwares and tools, or training staff on best practices to prevent these types of incidents.

Read: Turn your team into skilled problem solvers with these problem-solving strategies

8. Reflect on the process

The problem management process has the added benefit of recording the process in its entirety, so you can review it in the future. Once you’ve solved the problem, take the time to review each step and reflect on the lessons learned during this process. Make note of who was involved, what you needed, and any opportunities to improve your response to the next incident. After you go through the problem management process a few times and understand the basic steps, stakeholders, workload, and resources you need, create a template to make the kickoff process easier in the future.

5 benefits of problem management

Problem management helps you discover every piece of the problem—from the current scenario down to its root cause. Not only does this have an immediate positive impact on the current issue at hand, it also promotes collaboration and helps to build a better product overall. 

Here are five other ways ‌problem management can benefit your team:

Avoids repeat incidents. When you manage the entire incident from start to finish, you will address the foundational problems that caused it. This leads to fewer repeat incidents.

Boosts cross-functional collaboration. Problem management is a collaborative process. One incident might require collaboration from IT, the security team, and legal. Depending on the level of the problem, it might trickle all the way back down to the product or service team, where core changes need to be made.

Creates a better user experience. It’s simple—the fewer incidents you have, the better your customer’s experience will be. Reducing incidents means fewer delays, downtime, and frustrations for your users, and a higher rate of customer satisfaction.

Improves response time. As you develop a flow and framework with a project management process, you’ll be better equipped to handle future incidents—even if they’re different scenarios.

Organizes problem solving. Problem management provides a structured, thoughtful approach to solving problems. This reduces impulsive responses and helps you keep a better problem record of incidents and solutions.

Problem management leads to better, faster solutions

IT teams will always have to deal with incidents, but they don’t have to be bogged down by them. That’s because problem management works. Whether you employ a full problem management team or choose to apply these practices to your current IT infrastructure, problem management—especially when combined with a project management tool—saves you time and effort down the road.

With IT project plans, we’ve made it easier than ever to track your problem management work in a shared tool. Try our free IT project template to see your work come together, effortlessly.

Related resources

problem solving information system

How Asana uses work management to optimize resource planning

problem solving information system

How Asana uses work management for organizational planning

problem solving information system

Solve your tech overload with an intelligent transformation

problem solving information system

9 steps to craft a successful go-to-market (GTM) strategy

How to master the seven-step problem-solving process

In this episode of the McKinsey Podcast , Simon London speaks with Charles Conn, CEO of venture-capital firm Oxford Sciences Innovation, and McKinsey senior partner Hugo Sarrazin about the complexities of different problem-solving strategies.

Podcast transcript

Simon London: Hello, and welcome to this episode of the McKinsey Podcast , with me, Simon London. What’s the number-one skill you need to succeed professionally? Salesmanship, perhaps? Or a facility with statistics? Or maybe the ability to communicate crisply and clearly? Many would argue that at the very top of the list comes problem solving: that is, the ability to think through and come up with an optimal course of action to address any complex challenge—in business, in public policy, or indeed in life.

Looked at this way, it’s no surprise that McKinsey takes problem solving very seriously, testing for it during the recruiting process and then honing it, in McKinsey consultants, through immersion in a structured seven-step method. To discuss the art of problem solving, I sat down in California with McKinsey senior partner Hugo Sarrazin and also with Charles Conn. Charles is a former McKinsey partner, entrepreneur, executive, and coauthor of the book Bulletproof Problem Solving: The One Skill That Changes Everything [John Wiley & Sons, 2018].

Charles and Hugo, welcome to the podcast. Thank you for being here.

Hugo Sarrazin: Our pleasure.

Charles Conn: It’s terrific to be here.

Simon London: Problem solving is a really interesting piece of terminology. It could mean so many different things. I have a son who’s a teenage climber. They talk about solving problems. Climbing is problem solving. Charles, when you talk about problem solving, what are you talking about?

Charles Conn: For me, problem solving is the answer to the question “What should I do?” It’s interesting when there’s uncertainty and complexity, and when it’s meaningful because there are consequences. Your son’s climbing is a perfect example. There are consequences, and it’s complicated, and there’s uncertainty—can he make that grab? I think we can apply that same frame almost at any level. You can think about questions like “What town would I like to live in?” or “Should I put solar panels on my roof?”

You might think that’s a funny thing to apply problem solving to, but in my mind it’s not fundamentally different from business problem solving, which answers the question “What should my strategy be?” Or problem solving at the policy level: “How do we combat climate change?” “Should I support the local school bond?” I think these are all part and parcel of the same type of question, “What should I do?”

I’m a big fan of structured problem solving. By following steps, we can more clearly understand what problem it is we’re solving, what are the components of the problem that we’re solving, which components are the most important ones for us to pay attention to, which analytic techniques we should apply to those, and how we can synthesize what we’ve learned back into a compelling story. That’s all it is, at its heart.

I think sometimes when people think about seven steps, they assume that there’s a rigidity to this. That’s not it at all. It’s actually to give you the scope for creativity, which often doesn’t exist when your problem solving is muddled.

Simon London: You were just talking about the seven-step process. That’s what’s written down in the book, but it’s a very McKinsey process as well. Without getting too deep into the weeds, let’s go through the steps, one by one. You were just talking about problem definition as being a particularly important thing to get right first. That’s the first step. Hugo, tell us about that.

Hugo Sarrazin: It is surprising how often people jump past this step and make a bunch of assumptions. The most powerful thing is to step back and ask the basic questions—“What are we trying to solve? What are the constraints that exist? What are the dependencies?” Let’s make those explicit and really push the thinking and defining. At McKinsey, we spend an enormous amount of time in writing that little statement, and the statement, if you’re a logic purist, is great. You debate. “Is it an ‘or’? Is it an ‘and’? What’s the action verb?” Because all these specific words help you get to the heart of what matters.

Want to subscribe to The McKinsey Podcast ?

Simon London: So this is a concise problem statement.

Hugo Sarrazin: Yeah. It’s not like “Can we grow in Japan?” That’s interesting, but it is “What, specifically, are we trying to uncover in the growth of a product in Japan? Or a segment in Japan? Or a channel in Japan?” When you spend an enormous amount of time, in the first meeting of the different stakeholders, debating this and having different people put forward what they think the problem definition is, you realize that people have completely different views of why they’re here. That, to me, is the most important step.

Charles Conn: I would agree with that. For me, the problem context is critical. When we understand “What are the forces acting upon your decision maker? How quickly is the answer needed? With what precision is the answer needed? Are there areas that are off limits or areas where we would particularly like to find our solution? Is the decision maker open to exploring other areas?” then you not only become more efficient, and move toward what we call the critical path in problem solving, but you also make it so much more likely that you’re not going to waste your time or your decision maker’s time.

How often do especially bright young people run off with half of the idea about what the problem is and start collecting data and start building models—only to discover that they’ve really gone off half-cocked.

Hugo Sarrazin: Yeah.

Charles Conn: And in the wrong direction.

Simon London: OK. So step one—and there is a real art and a structure to it—is define the problem. Step two, Charles?

Charles Conn: My favorite step is step two, which is to use logic trees to disaggregate the problem. Every problem we’re solving has some complexity and some uncertainty in it. The only way that we can really get our team working on the problem is to take the problem apart into logical pieces.

What we find, of course, is that the way to disaggregate the problem often gives you an insight into the answer to the problem quite quickly. I love to do two or three different cuts at it, each one giving a bit of a different insight into what might be going wrong. By doing sensible disaggregations, using logic trees, we can figure out which parts of the problem we should be looking at, and we can assign those different parts to team members.

Simon London: What’s a good example of a logic tree on a sort of ratable problem?

Charles Conn: Maybe the easiest one is the classic profit tree. Almost in every business that I would take a look at, I would start with a profit or return-on-assets tree. In its simplest form, you have the components of revenue, which are price and quantity, and the components of cost, which are cost and quantity. Each of those can be broken out. Cost can be broken into variable cost and fixed cost. The components of price can be broken into what your pricing scheme is. That simple tree often provides insight into what’s going on in a business or what the difference is between that business and the competitors.

If we add the leg, which is “What’s the asset base or investment element?”—so profit divided by assets—then we can ask the question “Is the business using its investments sensibly?” whether that’s in stores or in manufacturing or in transportation assets. I hope we can see just how simple this is, even though we’re describing it in words.

When I went to work with Gordon Moore at the Moore Foundation, the problem that he asked us to look at was “How can we save Pacific salmon?” Now, that sounds like an impossible question, but it was amenable to precisely the same type of disaggregation and allowed us to organize what became a 15-year effort to improve the likelihood of good outcomes for Pacific salmon.

Simon London: Now, is there a danger that your logic tree can be impossibly large? This, I think, brings us onto the third step in the process, which is that you have to prioritize.

Charles Conn: Absolutely. The third step, which we also emphasize, along with good problem definition, is rigorous prioritization—we ask the questions “How important is this lever or this branch of the tree in the overall outcome that we seek to achieve? How much can I move that lever?” Obviously, we try and focus our efforts on ones that have a big impact on the problem and the ones that we have the ability to change. With salmon, ocean conditions turned out to be a big lever, but not one that we could adjust. We focused our attention on fish habitats and fish-harvesting practices, which were big levers that we could affect.

People spend a lot of time arguing about branches that are either not important or that none of us can change. We see it in the public square. When we deal with questions at the policy level—“Should you support the death penalty?” “How do we affect climate change?” “How can we uncover the causes and address homelessness?”—it’s even more important that we’re focusing on levers that are big and movable.

Would you like to learn more about our Strategy & Corporate Finance Practice ?

Simon London: Let’s move swiftly on to step four. You’ve defined your problem, you disaggregate it, you prioritize where you want to analyze—what you want to really look at hard. Then you got to the work plan. Now, what does that mean in practice?

Hugo Sarrazin: Depending on what you’ve prioritized, there are many things you could do. It could be breaking the work among the team members so that people have a clear piece of the work to do. It could be defining the specific analyses that need to get done and executed, and being clear on time lines. There’s always a level-one answer, there’s a level-two answer, there’s a level-three answer. Without being too flippant, I can solve any problem during a good dinner with wine. It won’t have a whole lot of backing.

Simon London: Not going to have a lot of depth to it.

Hugo Sarrazin: No, but it may be useful as a starting point. If the stakes are not that high, that could be OK. If it’s really high stakes, you may need level three and have the whole model validated in three different ways. You need to find a work plan that reflects the level of precision, the time frame you have, and the stakeholders you need to bring along in the exercise.

Charles Conn: I love the way you’ve described that, because, again, some people think of problem solving as a linear thing, but of course what’s critical is that it’s iterative. As you say, you can solve the problem in one day or even one hour.

Charles Conn: We encourage our teams everywhere to do that. We call it the one-day answer or the one-hour answer. In work planning, we’re always iterating. Every time you see a 50-page work plan that stretches out to three months, you know it’s wrong. It will be outmoded very quickly by that learning process that you described. Iterative problem solving is a critical part of this. Sometimes, people think work planning sounds dull, but it isn’t. It’s how we know what’s expected of us and when we need to deliver it and how we’re progressing toward the answer. It’s also the place where we can deal with biases. Bias is a feature of every human decision-making process. If we design our team interactions intelligently, we can avoid the worst sort of biases.

Simon London: Here we’re talking about cognitive biases primarily, right? It’s not that I’m biased against you because of your accent or something. These are the cognitive biases that behavioral sciences have shown we all carry around, things like anchoring, overoptimism—these kinds of things.

Both: Yeah.

Charles Conn: Availability bias is the one that I’m always alert to. You think you’ve seen the problem before, and therefore what’s available is your previous conception of it—and we have to be most careful about that. In any human setting, we also have to be careful about biases that are based on hierarchies, sometimes called sunflower bias. I’m sure, Hugo, with your teams, you make sure that the youngest team members speak first. Not the oldest team members, because it’s easy for people to look at who’s senior and alter their own creative approaches.

Hugo Sarrazin: It’s helpful, at that moment—if someone is asserting a point of view—to ask the question “This was true in what context?” You’re trying to apply something that worked in one context to a different one. That can be deadly if the context has changed, and that’s why organizations struggle to change. You promote all these people because they did something that worked well in the past, and then there’s a disruption in the industry, and they keep doing what got them promoted even though the context has changed.

Simon London: Right. Right.

Hugo Sarrazin: So it’s the same thing in problem solving.

Charles Conn: And it’s why diversity in our teams is so important. It’s one of the best things about the world that we’re in now. We’re likely to have people from different socioeconomic, ethnic, and national backgrounds, each of whom sees problems from a slightly different perspective. It is therefore much more likely that the team will uncover a truly creative and clever approach to problem solving.

Simon London: Let’s move on to step five. You’ve done your work plan. Now you’ve actually got to do the analysis. The thing that strikes me here is that the range of tools that we have at our disposal now, of course, is just huge, particularly with advances in computation, advanced analytics. There’s so many things that you can apply here. Just talk about the analysis stage. How do you pick the right tools?

Charles Conn: For me, the most important thing is that we start with simple heuristics and explanatory statistics before we go off and use the big-gun tools. We need to understand the shape and scope of our problem before we start applying these massive and complex analytical approaches.

Simon London: Would you agree with that?

Hugo Sarrazin: I agree. I think there are so many wonderful heuristics. You need to start there before you go deep into the modeling exercise. There’s an interesting dynamic that’s happening, though. In some cases, for some types of problems, it is even better to set yourself up to maximize your learning. Your problem-solving methodology is test and learn, test and learn, test and learn, and iterate. That is a heuristic in itself, the A/B testing that is used in many parts of the world. So that’s a problem-solving methodology. It’s nothing different. It just uses technology and feedback loops in a fast way. The other one is exploratory data analysis. When you’re dealing with a large-scale problem, and there’s so much data, I can get to the heuristics that Charles was talking about through very clever visualization of data.

You test with your data. You need to set up an environment to do so, but don’t get caught up in neural-network modeling immediately. You’re testing, you’re checking—“Is the data right? Is it sound? Does it make sense?”—before you launch too far.

Simon London: You do hear these ideas—that if you have a big enough data set and enough algorithms, they’re going to find things that you just wouldn’t have spotted, find solutions that maybe you wouldn’t have thought of. Does machine learning sort of revolutionize the problem-solving process? Or are these actually just other tools in the toolbox for structured problem solving?

Charles Conn: It can be revolutionary. There are some areas in which the pattern recognition of large data sets and good algorithms can help us see things that we otherwise couldn’t see. But I do think it’s terribly important we don’t think that this particular technique is a substitute for superb problem solving, starting with good problem definition. Many people use machine learning without understanding algorithms that themselves can have biases built into them. Just as 20 years ago, when we were doing statistical analysis, we knew that we needed good model definition, we still need a good understanding of our algorithms and really good problem definition before we launch off into big data sets and unknown algorithms.

Simon London: Step six. You’ve done your analysis.

Charles Conn: I take six and seven together, and this is the place where young problem solvers often make a mistake. They’ve got their analysis, and they assume that’s the answer, and of course it isn’t the answer. The ability to synthesize the pieces that came out of the analysis and begin to weave those into a story that helps people answer the question “What should I do?” This is back to where we started. If we can’t synthesize, and we can’t tell a story, then our decision maker can’t find the answer to “What should I do?”

Simon London: But, again, these final steps are about motivating people to action, right?

Charles Conn: Yeah.

Simon London: I am slightly torn about the nomenclature of problem solving because it’s on paper, right? Until you motivate people to action, you actually haven’t solved anything.

Charles Conn: I love this question because I think decision-making theory, without a bias to action, is a waste of time. Everything in how I approach this is to help people take action that makes the world better.

Simon London: Hence, these are absolutely critical steps. If you don’t do this well, you’ve just got a bunch of analysis.

Charles Conn: We end up in exactly the same place where we started, which is people speaking across each other, past each other in the public square, rather than actually working together, shoulder to shoulder, to crack these important problems.

Simon London: In the real world, we have a lot of uncertainty—arguably, increasing uncertainty. How do good problem solvers deal with that?

Hugo Sarrazin: At every step of the process. In the problem definition, when you’re defining the context, you need to understand those sources of uncertainty and whether they’re important or not important. It becomes important in the definition of the tree.

You need to think carefully about the branches of the tree that are more certain and less certain as you define them. They don’t have equal weight just because they’ve got equal space on the page. Then, when you’re prioritizing, your prioritization approach may put more emphasis on things that have low probability but huge impact—or, vice versa, may put a lot of priority on things that are very likely and, hopefully, have a reasonable impact. You can introduce that along the way. When you come back to the synthesis, you just need to be nuanced about what you’re understanding, the likelihood.

Often, people lack humility in the way they make their recommendations: “This is the answer.” They’re very precise, and I think we would all be well-served to say, “This is a likely answer under the following sets of conditions” and then make the level of uncertainty clearer, if that is appropriate. It doesn’t mean you’re always in the gray zone; it doesn’t mean you don’t have a point of view. It just means that you can be explicit about the certainty of your answer when you make that recommendation.

Simon London: So it sounds like there is an underlying principle: “Acknowledge and embrace the uncertainty. Don’t pretend that it isn’t there. Be very clear about what the uncertainties are up front, and then build that into every step of the process.”

Hugo Sarrazin: Every step of the process.

Simon London: Yeah. We have just walked through a particular structured methodology for problem solving. But, of course, this is not the only structured methodology for problem solving. One that is also very well-known is design thinking, which comes at things very differently. So, Hugo, I know you have worked with a lot of designers. Just give us a very quick summary. Design thinking—what is it, and how does it relate?

Hugo Sarrazin: It starts with an incredible amount of empathy for the user and uses that to define the problem. It does pause and go out in the wild and spend an enormous amount of time seeing how people interact with objects, seeing the experience they’re getting, seeing the pain points or joy—and uses that to infer and define the problem.

Simon London: Problem definition, but out in the world.

Hugo Sarrazin: With an enormous amount of empathy. There’s a huge emphasis on empathy. Traditional, more classic problem solving is you define the problem based on an understanding of the situation. This one almost presupposes that we don’t know the problem until we go see it. The second thing is you need to come up with multiple scenarios or answers or ideas or concepts, and there’s a lot of divergent thinking initially. That’s slightly different, versus the prioritization, but not for long. Eventually, you need to kind of say, “OK, I’m going to converge again.” Then you go and you bring things back to the customer and get feedback and iterate. Then you rinse and repeat, rinse and repeat. There’s a lot of tactile building, along the way, of prototypes and things like that. It’s very iterative.

Simon London: So, Charles, are these complements or are these alternatives?

Charles Conn: I think they’re entirely complementary, and I think Hugo’s description is perfect. When we do problem definition well in classic problem solving, we are demonstrating the kind of empathy, at the very beginning of our problem, that design thinking asks us to approach. When we ideate—and that’s very similar to the disaggregation, prioritization, and work-planning steps—we do precisely the same thing, and often we use contrasting teams, so that we do have divergent thinking. The best teams allow divergent thinking to bump them off whatever their initial biases in problem solving are. For me, design thinking gives us a constant reminder of creativity, empathy, and the tactile nature of problem solving, but it’s absolutely complementary, not alternative.

Simon London: I think, in a world of cross-functional teams, an interesting question is do people with design-thinking backgrounds really work well together with classical problem solvers? How do you make that chemistry happen?

Hugo Sarrazin: Yeah, it is not easy when people have spent an enormous amount of time seeped in design thinking or user-centric design, whichever word you want to use. If the person who’s applying classic problem-solving methodology is very rigid and mechanical in the way they’re doing it, there could be an enormous amount of tension. If there’s not clarity in the role and not clarity in the process, I think having the two together can be, sometimes, problematic.

The second thing that happens often is that the artifacts the two methodologies try to gravitate toward can be different. Classic problem solving often gravitates toward a model; design thinking migrates toward a prototype. Rather than writing a big deck with all my supporting evidence, they’ll bring an example, a thing, and that feels different. Then you spend your time differently to achieve those two end products, so that’s another source of friction.

Now, I still think it can be an incredibly powerful thing to have the two—if there are the right people with the right mind-set, if there is a team that is explicit about the roles, if we’re clear about the kind of outcomes we are attempting to bring forward. There’s an enormous amount of collaborativeness and respect.

Simon London: But they have to respect each other’s methodology and be prepared to flex, maybe, a little bit, in how this process is going to work.

Hugo Sarrazin: Absolutely.

Simon London: The other area where, it strikes me, there could be a little bit of a different sort of friction is this whole concept of the day-one answer, which is what we were just talking about in classical problem solving. Now, you know that this is probably not going to be your final answer, but that’s how you begin to structure the problem. Whereas I would imagine your design thinkers—no, they’re going off to do their ethnographic research and get out into the field, potentially for a long time, before they come back with at least an initial hypothesis.

Want better strategies? Become a bulletproof problem solver

Want better strategies? Become a bulletproof problem solver

Hugo Sarrazin: That is a great callout, and that’s another difference. Designers typically will like to soak into the situation and avoid converging too quickly. There’s optionality and exploring different options. There’s a strong belief that keeps the solution space wide enough that you can come up with more radical ideas. If there’s a large design team or many designers on the team, and you come on Friday and say, “What’s our week-one answer?” they’re going to struggle. They’re not going to be comfortable, naturally, to give that answer. It doesn’t mean they don’t have an answer; it’s just not where they are in their thinking process.

Simon London: I think we are, sadly, out of time for today. But Charles and Hugo, thank you so much.

Charles Conn: It was a pleasure to be here, Simon.

Hugo Sarrazin: It was a pleasure. Thank you.

Simon London: And thanks, as always, to you, our listeners, for tuning into this episode of the McKinsey Podcast . If you want to learn more about problem solving, you can find the book, Bulletproof Problem Solving: The One Skill That Changes Everything , online or order it through your local bookstore. To learn more about McKinsey, you can of course find us at McKinsey.com.

Charles Conn is CEO of Oxford Sciences Innovation and an alumnus of McKinsey’s Sydney office. Hugo Sarrazin is a senior partner in the Silicon Valley office, where Simon London, a member of McKinsey Publishing, is also based.

Explore a career with us

Related articles.

Want better strategies? Become a bulletproof problem solver

Strategy to beat the odds

firo13_frth

Five routes to more innovative problem solving

  • The Art of Effective Problem Solving: A Step-by-Step Guide
  • Learn Lean Sigma
  • Problem Solving

Whether we realise it or not, problem solving skills are an important part of our daily lives. From resolving a minor annoyance at home to tackling complex business challenges at work, our ability to solve problems has a significant impact on our success and happiness. However, not everyone is naturally gifted at problem-solving, and even those who are can always improve their skills. In this blog post, we will go over the art of effective problem-solving step by step.

You will learn how to define a problem, gather information, assess alternatives, and implement a solution, all while honing your critical thinking and creative problem-solving skills. Whether you’re a seasoned problem solver or just getting started, this guide will arm you with the knowledge and tools you need to face any challenge with confidence. So let’s get started!

Table of Contents

Problem solving methodologies.

Individuals and organisations can use a variety of problem-solving methodologies to address complex challenges. 8D and A3 problem solving techniques are two popular methodologies in the Lean Six Sigma framework.

Methodology of 8D (Eight Discipline) Problem Solving:

The 8D problem solving methodology is a systematic, team-based approach to problem solving. It is a method that guides a team through eight distinct steps to solve a problem in a systematic and comprehensive manner.

The 8D process consists of the following steps:

  • Form a team: Assemble a group of people who have the necessary expertise to work on the problem.
  • Define the issue: Clearly identify and define the problem, including the root cause and the customer impact.
  • Create a temporary containment plan: Put in place a plan to lessen the impact of the problem until a permanent solution can be found.
  • Identify the root cause: To identify the underlying causes of the problem, use root cause analysis techniques such as Fishbone diagrams and Pareto charts.
  • Create and test long-term corrective actions: Create and test a long-term solution to eliminate the root cause of the problem.
  • Implement and validate the permanent solution: Implement and validate the permanent solution’s effectiveness.
  • Prevent recurrence: Put in place measures to keep the problem from recurring.
  • Recognize and reward the team: Recognize and reward the team for its efforts.

Download the 8D Problem Solving Template

A3 Problem Solving Method:

The A3 problem solving technique is a visual, team-based problem-solving approach that is frequently used in Lean Six Sigma projects. The A3 report is a one-page document that clearly and concisely outlines the problem, root cause analysis, and proposed solution.

The A3 problem-solving procedure consists of the following steps:

  • Determine the issue: Define the issue clearly, including its impact on the customer.
  • Perform root cause analysis: Identify the underlying causes of the problem using root cause analysis techniques.
  • Create and implement a solution: Create and implement a solution that addresses the problem’s root cause.
  • Monitor and improve the solution: Keep an eye on the solution’s effectiveness and make any necessary changes.

Subsequently, in the Lean Six Sigma framework, the 8D and A3 problem solving methodologies are two popular approaches to problem solving. Both methodologies provide a structured, team-based problem-solving approach that guides individuals through a comprehensive and systematic process of identifying, analysing, and resolving problems in an effective and efficient manner.

Step 1 – Define the Problem

The definition of the problem is the first step in effective problem solving. This may appear to be a simple task, but it is actually quite difficult. This is because problems are frequently complex and multi-layered, making it easy to confuse symptoms with the underlying cause. To avoid this pitfall, it is critical to thoroughly understand the problem.

To begin, ask yourself some clarifying questions:

  • What exactly is the issue?
  • What are the problem’s symptoms or consequences?
  • Who or what is impacted by the issue?
  • When and where does the issue arise?

Answering these questions will assist you in determining the scope of the problem. However, simply describing the problem is not always sufficient; you must also identify the root cause. The root cause is the underlying cause of the problem and is usually the key to resolving it permanently.

Try asking “why” questions to find the root cause:

  • What causes the problem?
  • Why does it continue?
  • Why does it have the effects that it does?

By repeatedly asking “ why ,” you’ll eventually get to the bottom of the problem. This is an important step in the problem-solving process because it ensures that you’re dealing with the root cause rather than just the symptoms.

Once you have a firm grasp on the issue, it is time to divide it into smaller, more manageable chunks. This makes tackling the problem easier and reduces the risk of becoming overwhelmed. For example, if you’re attempting to solve a complex business problem, you might divide it into smaller components like market research, product development, and sales strategies.

To summarise step 1, defining the problem is an important first step in effective problem-solving. You will be able to identify the root cause and break it down into manageable parts if you take the time to thoroughly understand the problem. This will prepare you for the next step in the problem-solving process, which is gathering information and brainstorming ideas.

Step 2 – Gather Information and Brainstorm Ideas

Gathering information and brainstorming ideas is the next step in effective problem solving. This entails researching the problem and relevant information, collaborating with others, and coming up with a variety of potential solutions. This increases your chances of finding the best solution to the problem.

Begin by researching the problem and relevant information. This could include reading articles, conducting surveys, or consulting with experts. The goal is to collect as much information as possible in order to better understand the problem and possible solutions.

Next, work with others to gather a variety of perspectives. Brainstorming with others can be an excellent way to come up with new and creative ideas. Encourage everyone to share their thoughts and ideas when working in a group, and make an effort to actively listen to what others have to say. Be open to new and unconventional ideas and resist the urge to dismiss them too quickly.

Finally, use brainstorming to generate a wide range of potential solutions. This is the place where you can let your imagination run wild. At this stage, don’t worry about the feasibility or practicality of the solutions; instead, focus on generating as many ideas as possible. Write down everything that comes to mind, no matter how ridiculous or unusual it may appear. This can be done individually or in groups.

Once you’ve compiled a list of potential solutions, it’s time to assess them and select the best one. This is the next step in the problem-solving process, which we’ll go over in greater detail in the following section.

Step 3 – Evaluate Options and Choose the Best Solution

Once you’ve compiled a list of potential solutions, it’s time to assess them and select the best one. This is the third step in effective problem solving, and it entails weighing the advantages and disadvantages of each solution, considering their feasibility and practicability, and selecting the solution that is most likely to solve the problem effectively.

To begin, weigh the advantages and disadvantages of each solution. This will assist you in determining the potential outcomes of each solution and deciding which is the best option. For example, a quick and easy solution may not be the most effective in the long run, whereas a more complex and time-consuming solution may be more effective in solving the problem in the long run.

Consider each solution’s feasibility and practicability. Consider the following:

  • Can the solution be implemented within the available resources, time, and budget?
  • What are the possible barriers to implementing the solution?
  • Is the solution feasible in today’s political, economic, and social environment?

You’ll be able to tell which solutions are likely to succeed and which aren’t by assessing their feasibility and practicability.

Finally, choose the solution that is most likely to effectively solve the problem. This solution should be based on the criteria you’ve established, such as the advantages and disadvantages of each solution, their feasibility and practicability, and your overall goals.

It is critical to remember that there is no one-size-fits-all solution to problems. What is effective for one person or situation may not be effective for another. This is why it is critical to consider a wide range of solutions and evaluate each one based on its ability to effectively solve the problem.

Step 4 – Implement and Monitor the Solution

When you’ve decided on the best solution, it’s time to put it into action. The fourth and final step in effective problem solving is to put the solution into action, monitor its progress, and make any necessary adjustments.

To begin, implement the solution. This may entail delegating tasks, developing a strategy, and allocating resources. Ascertain that everyone involved understands their role and responsibilities in the solution’s implementation.

Next, keep an eye on the solution’s progress. This may entail scheduling regular check-ins, tracking metrics, and soliciting feedback from others. You will be able to identify any potential roadblocks and make any necessary adjustments in a timely manner if you monitor the progress of the solution.

Finally, make any necessary modifications to the solution. This could entail changing the solution, altering the plan of action, or delegating different tasks. Be willing to make changes if they will improve the solution or help it solve the problem more effectively.

It’s important to remember that problem solving is an iterative process, and there may be times when you need to start from scratch. This is especially true if the initial solution does not effectively solve the problem. In these situations, it’s critical to be adaptable and flexible and to keep trying new solutions until you find the one that works best.

To summarise, effective problem solving is a critical skill that can assist individuals and organisations in overcoming challenges and achieving their objectives. Effective problem solving consists of four key steps: defining the problem, generating potential solutions, evaluating alternatives and selecting the best solution, and implementing the solution.

You can increase your chances of success in problem solving by following these steps and considering factors such as the pros and cons of each solution, their feasibility and practicability, and making any necessary adjustments. Furthermore, keep in mind that problem solving is an iterative process, and there may be times when you need to go back to the beginning and restart. Maintain your adaptability and try new solutions until you find the one that works best for you.

  • Novick, L.R. and Bassok, M., 2005.  Problem Solving . Cambridge University Press.

Daniel Croft

Daniel Croft is a seasoned continuous improvement manager with a Black Belt in Lean Six Sigma. With over 10 years of real-world application experience across diverse sectors, Daniel has a passion for optimizing processes and fostering a culture of efficiency. He's not just a practitioner but also an avid learner, constantly seeking to expand his knowledge. Outside of his professional life, Daniel has a keen Investing, statistics and knowledge-sharing, which led him to create the website learnleansigma.com, a platform dedicated to Lean Six Sigma and process improvement insights.

Free Lean Six Sigma Templates

Improve your Lean Six Sigma projects with our free templates. They're designed to make implementation and management easier, helping you achieve better results.

5S Floor Marking Best Practices

In lean manufacturing, the 5S System is a foundational tool, involving the steps: Sort, Set…

How to Measure the ROI of Continuous Improvement Initiatives

When it comes to business, knowing the value you’re getting for your money is crucial,…

8D Problem-Solving: Common Mistakes to Avoid

In today’s competitive business landscape, effective problem-solving is the cornerstone of organizational success. The 8D…

The Evolution of 8D Problem-Solving: From Basics to Excellence

In a world where efficiency and effectiveness are more than just buzzwords, the need for…

8D: Tools and Techniques

Are you grappling with recurring problems in your organization and searching for a structured way…

How to Select the Right Lean Six Sigma Projects: A Comprehensive Guide

Going on a Lean Six Sigma journey is an invigorating experience filled with opportunities for…

logo-sm

Reqi Systems Engineering Articles

Understanding Systems Thinking: A Path to Insightful Problem-Solving

Understanding Systems Thinking: A Path to Insightful Problem-Solving

In today’s dynamic and complex business landscape, traditional problem-solving approaches often fall short in addressing persistent challenges. Enter systems thinking, a powerful methodology that offers a fresh perspective by considering the interconnectedness of various elements within a system. In this article, we delve into the fundamentals of systems thinking, exploring its principles, benefits, and practical tips for beginners. Whether you’re eager to introduce this approach in your organisation or looking to enhance your problem-solving skills, let’s embark on a journey of understanding the intricacies of systems thinking.

Table of Contents

Understanding Systems Thinking

Practical tips for beginners, the benefits of systems thinking, when to apply systems thinking, getting started, utilising systems thinking tools, indicators of progress in systems thinking.

Systems thinking encompasses a broad range of principles, tools, and a philosophical mindset. It involves understanding the circular nature of the world we live in, recognising the role of structures in shaping the conditions we face, and acknowledging the existence of powerful laws governing systems. By adopting a systems thinking approach, we gain a deeper understanding of the consequences of our actions, allowing us to make more informed decisions.

  • Study Archetypes: Dive into the classic stories and patterns to enhance your understanding.
  • Practice Frequently: Analyse real-world scenarios, such as newspaper articles and current headlines, through a systems lens.
  • Apply Systems Thinking Everywhere: Extend your application of systems thinking beyond the workplace to gain a holistic perspective.
  • Embrace Different Perspectives: Use systems thinking to explore alternative viewpoints and understand how others perceive a system.
  • Accept the Learning Curve: Recognise that becoming skilled in utilising systems thinking tools takes time and practice. Embrace the journey!

Systems thinking offers several compelling reasons to adopt its principles in problem-solving endeavours. By broadening our thinking and enabling us to articulate problems in novel ways, it expands the range of choices available for resolving complex issues. Furthermore, systems thinking emphasises the importance of considering the interconnectedness of various elements, highlighting that every decision has ripple effects throughout the system. By anticipating these impacts, we can make informed choices and minimise unintended consequences.

Ideally, systems thinking is suited for problems with the following characteristics:

  • Importance: The issue at hand holds significant significance.
  • Chronicity: The problem persists over time, rather than being a one-time event.
  • Familiarity: The problem has a known history, indicating previous attempts at resolution.
  • Previous Failures: Past efforts to solve the problem have been unsuccessful.

When approaching a problem through systems thinking, it’s crucial to foster a blame-free environment. Instead of focusing on assigning blame, encourage curiosity within the team. Prompt discussions by asking thought-provoking questions like, “What aspects of this problem are we failing to comprehend?”

To ensure a comprehensive analysis, employ the iceberg framework. Encourage the team to describe the problem by examining its events, patterns, and underlying structures. Additionally, diverse perspectives are essential. Involve individuals from various departments or functional areas to capture a comprehensive range of mental models.

One of the fundamental tools in systems thinking is the causal loop diagram. When using this tool, remember that simplicity is key. Start with a small and straightforward diagram, gradually adding elements as necessary. The diagram should reflect the story your group aims to depict accurately. Don’t fret about creating a diagram that includes every variable; focus on capturing the causal relationships that matter most.

Another valuable resource in systems thinking is the use of archetypes. These classic stories serve as powerful illustrations of systems behaviour. Keep the application of archetypes simple and relatable, allowing individuals to draw parallels between the archetypes and their own problems.

As you progress in your journey of applying systems thinking, it’s essential to gauge your proficiency and recognise when you have truly grasped its principles. Here are some indicators that can help you determine if you’re on the right track:

  • Asking Different Kinds of Questions: A hallmark of systems thinking is a shift in the types of questions you ask. Instead of focusing solely on immediate causes and effects, you start exploring the underlying systemic structures and interconnections. You find yourself inquiring about feedback loops, dependencies, and unintended consequences, seeking a more holistic understanding of the system at play.
  • Recognising Cautionary Flags: With a growing understanding of systems thinking, you become attuned to catchphrases that may oversimplify complex problems. For instance, when someone suggests, “The problem is we need more (sales staff, revenue),” you instinctively recognise the need to delve deeper. You redirect the discussion towards systemic factors, understanding that increasing staff or revenue alone may not address the root causes.
  • Detecting Archetypes and Balancing Processes: As you deepen your knowledge of systems thinking, you begin to identify recurring patterns or archetypes in stories and real-world situations. These archetypes, such as “The Tragedy of the Commons” or “Shifting the Burden,” illustrate common systemic behaviours. Recognising these archetypes enables you to spot imbalances and reinforcing processes within a system, facilitating a more comprehensive analysis of complex issues.
  • Surfacing Mental Models: Systems thinking invites a deep exploration of mental models—the deeply held beliefs, assumptions, and perspectives that shape our understanding of the world. As you progress, you become adept at recognising and challenging your own mental models and those of others. By surfacing and examining these mental models, you can uncover potential biases and broaden your perspective, enabling more robust problem-solving.
  • Identifying Leverage Points: Leverage points are strategic areas within a system where interventions can have a significant and lasting impact. With increasing proficiency in systems thinking, you start recognising these leverage points, understanding which actions can create meaningful change. This heightened awareness empowers you to identify leverage points in classic systems stories and apply them creatively to real-world challenges.

Systems thinking is a transformative approach to problem-solving, offering a powerful lens through which to understand complex issues. By embracing these principles and utilising its tools, you can unlock fresh insights and uncover interconnected patterns. Whether you’re just beginning your journey or seeking to refine your skills, systems thinking empowers you to tackle challenges more comprehensively, paving the way for effective and sustainable solutions.

Remember, systems thinking is not just a method; it’s a lifelong practice that cultivates curiosity, clarity, compassion, choice, and courage. Embrace this holistic approach, and you’ll witness a paradigm shift in the way you perceive the world and address complex problems.

Related Posts

Streamline Your Review Process with Gosubmit: The Ultimate Review Platform

Leave a Reply Cancel reply

You must be logged in to post a comment.

A Practical Guide to Problem-Solving Techniques in Systems Engineering

A Practical Guide to Problem-Solving Techniques in Systems Engineering

In the world of systems engineering, identifying and addressing issues is a significant part of the job. To ensure the smooth operation of complex systems, engineers employ various practical problem-solving techniques. Problem-solving techniques are not limited to solving issues specific to any one system, but can also be applied when generating new product ideas and solutions.

We'll start by exploring some common analytical and systematic problem-solving techniques, including thought experiments, the 5 Whys, and root cause analysis, before looking at some more creative techniques.

Analytical and Systematic Problem-Solving Techniques

Thought experiments.

A thought experiment is a disciplined imagination process that engineers use to ponder a problem or system without conducting physical experiments. By using hypothetical scenarios, engineers can predict potential challenges and find solutions without the cost and time of real-world testing.

For instance, consider the design of an urban traffic control system. Engineers can create a thought experiment about how the system would handle an emergency, such as a major traffic accident during rush hour. This mental exercise could help identify potential bottlenecks or gaps in the system, allowing engineers to design more effective controls or contingency plans.

The 5 Whys technique, originally developed by Toyota, is a simple yet effective method to drill down to the root of a problem. By repeatedly asking "why?" in response to the previous answer, engineers can uncover the underlying cause behind an issue.

Imagine a server crash in a data centre. The 5 Whys process might look like this:

  • Why did the server crash? Because it overheated.
  • Why did it overheat? Because the cooling system failed.
  • Why did the cooling system fail? Because the coolant was not circulating.
  • Why was the coolant not circulating? Because the pump was broken.
  • Why was the pump broken? Because it was not maintained as per the recommended schedule.

Through this process, we learn that the root cause of the server crash was inadequate maintenance, not merely a random hardware failure.

Root Cause Analysis (RCA)

Root cause analysis (RCA) is a systematic process for identifying the underlying causes of faults or problems. RCA aims to prevent the same problems from recurring by eliminating the root cause rather than treating the symptoms.

For example, suppose a manufacturing assembly line is regularly shutting down due to equipment failure. Rather than just fixing or replacing the equipment each time, an RCA might uncover that a specific part is consistently under high stress due to improper alignment, causing it to fail. By correcting this alignment, the systems engineer can prevent the problem from recurring.

Fault Tree Analysis (FTA)

Fault Tree Analysis (FTA) is a top-down, deductive analysis method used to explore the many different causes of a specific failure or undesirable outcome. It graphically represents the logical relationships between subsystem failures, potential human errors, and external events in the form of a tree.

Suppose a software system suffers from frequent downtime. The FTA would start with the undesired event at the top (downtime), and then branch out into various potential causes such as software bugs, hardware failure, network issues, and so on. Each of these branches can then be subdivided further into more specific faults, allowing the engineer to understand all potential causes of the problem and prioritise the most likely or serious ones for remediation.

Simulation Modelling

Simulation modelling is a powerful tool that allows systems engineers to predict the behaviour of a system under different conditions. By creating a digital twin of a real-world system, engineers can understand the system's response to changes in variables, identify potential issues, and test solutions.

For instance, in a complex logistics operation, a simulation model can be used to understand the impact of adding a new product line or increasing order volume. This could reveal potential bottlenecks or inefficiencies, allowing proactive adjustments to be made before they become real-world problems.

Creative Problem-Solving Techniques

Beyond the analytical and systematic problem-solving techniques traditionally used in engineering, there are numerous creative methods that can be applied. These techniques stimulate lateral thinking, enabling you to view problems from a fresh perspective and identify innovative solutions. Here are a few examples:

Brainstorming

Brainstorming is perhaps one of the most commonly used creative problem-solving techniques. It involves gathering a group of people and encouraging them to freely share their thoughts and ideas related to a specific problem. The key is to refrain from any judgment or criticism during the brainstorming process to encourage free thought and out-of-the-box ideas.

SCAMPER is a creative-thinking technique that uses seven types of transformations: Substitute, Combine, Adapt, Modify, Put to another use, Eliminate, and Reverse. By examining a problem through these different lenses, you can generate novel solutions. For example, if you're trying to enhance the efficiency of a manufacturing process, you might "Adapt" a method from a completely different industry or "Combine" two existing processes into one.

Mind Mapping

Mind Mapping is a visual tool that helps structure information, enabling you to better analyse, comprehend, and generate new ideas. Starting with a central concept, you add nodes branching out into related subtopics. This can reveal unexpected connections and encourage creative problem-solving.

Six Thinking Hats

This technique, devised by Edward de Bono, involves viewing a problem from six distinct perspectives, symbolised by hats of different colours. The white hat considers facts and information, the red hat looks at the issue emotionally, the black hat uses caution and considers risks, the yellow hat optimistically thinks about benefits, the green hat encourages creativity, and the blue hat manages the process and oversees the big picture.

Analogy Thinking

Analogy thinking, or analogous thinking, is a method of comparing the problem at hand to other similar situations or phenomena. By drawing parallels, you might find creative solutions that you would not have considered otherwise. For example, an engineer might draw inspiration from the natural world, such as how a bird flies or a tree distributes nutrients, to solve a complex mechanical or systems problem.

In conclusion, problem-solving in systems engineering represents a harmonious blend of art and science. It's not about completely discarding systematic, logical techniques, but instead complementing them with creative strategies. This combination of traditional and creative methods equips systems engineers with the tools to predict, identify, and address issues effectively and efficiently. By fostering a balance between analytical and innovative thinking, fresh insights can be gained and novel solutions developed. This fusion is often where the most impactful solutions are found. As these techniques are regularly practiced and mastered, they can lead to smoother operations, reduced downtime, and ultimately more successful projects. The artistry lies in the creativity, and the science in the application and understanding of these tools, culminating in an exciting, evolving, and rewarding field.

This content was generated using OpenAI's GPT Large Language Model (with some human curation!). Check out the post "Explain it like I'm 5: What is ChatGPT?" to learn more.

The Power of Active Inference in Systems Engineering

Applications of the pyramid principle in systems engineering, you might also like..., stock and flow modelling, the art of debugging, the importance of model testing and types.

Patching System Leaks

Patching System Leaks

Developing and Implementing Information Systems

  • First Online: 01 January 2013

Cite this chapter

problem solving information system

  • Jun Xu 3 &
  • Mohammed Quaddus 4  

2600 Accesses

In this chapter, we will describe the system approach to problem solving, explain the steps of the systems development life cycle, point out the need for successful project management, change management and risk management, and compare different development approaches organisations can apply.

This is a preview of subscription content, log in via an institution to check access.

Access this chapter

  • Available as PDF
  • Read on any device
  • Instant download
  • Own it forever
  • Compact, lightweight edition
  • Dispatched in 3 to 5 business days
  • Free shipping worldwide - see info
  • Durable hardcover edition

Tax calculation will be finalised at checkout

Purchases are for personal use only

Institutional subscriptions

Unable to display preview.  Download preview PDF.

Bibliography

Bloch, M., Blumberg, S. & Laartz, J. 2012, “Delivering large-scale IT projects on time, on budget, and on vlaue’, McKinsey Technology Office , October 2012, pp. 1–6.

Google Scholar  

Haag, S., Baltzan, P. & Phillips, A. 2008, Business Driven Technology , 2nd edn, McGraw-Hill Irwin, Boston, USA.

Hoffer, J.A., George, J.F. & Valacich, J.S. 2005, Modern Systems Analysis and Design , 4th edn, Prentice Hall.

Jones, J., Aguirre, D. & Calderone, M. 2004, “10 Principles of Change Management”, Strategy  +  Business , April 2004, pp. 1–5.

McKeown, P. 2000, Information Technology and the Networked Economy , Thomson Learning, Boston.

Nelson, R.R. 2007, “IT Project Management: Infamous Failures, Classic Mistakes, and Best Practices”, MIS Quarterly Executive , Vol. 6, No. 2, pp. 67–78.

O’Brien, J. A. & Marakas, G. M. 2011, Management Information Systems , 10th Edition, McGraw-Hill, New York, USA.

Pearlson, K. E. & Saunders, C. S. 2010, Managing and Using Information Systems: A Strategic Approach , Fourth Edition, John Wiley & Sons, USA.

Roberts, R. Sarrazin, H. & Sikes, J. 2010, ‘Reshaping IT management for turbulent times’, McKinsey on Business Technology , Number 21, pp. 2–9.

Wang, K. W. 2010, ‘Creating Competitive Advantage with IT Architecture’, McKinsey on Business Technology , Number 18, Winter 2010, pp. 18–21.

Download references

Author information

Authors and affiliations.

Southern Cross Business School, Southern Cross University, Brett Street, Tweed Heads, NSW, 2485, Australia

Graduate School of Business, Curtin University, Perth, Australia

Mohammed Quaddus

You can also search for this author in PubMed   Google Scholar

Corresponding author

Correspondence to Jun Xu .

Rights and permissions

Reprints and permissions

Copyright information

© 2013 ATLANTIS PRESS

About this chapter

Xu, J., Quaddus, M. (2013). Developing and Implementing Information Systems. In: Managing Information Systems. Atlantis Press, Paris. https://doi.org/10.2991/978-94-91216-89-3_4

Download citation

DOI : https://doi.org/10.2991/978-94-91216-89-3_4

Published : 29 January 2013

Publisher Name : Atlantis Press, Paris

Print ISBN : 978-94-91216-88-6

Online ISBN : 978-94-91216-89-3

eBook Packages : Business and Economics Business and Management (R0)

Share this chapter

Anyone you share the following link with will be able to read this content:

Sorry, a shareable link is not currently available for this article.

Provided by the Springer Nature SharedIt content-sharing initiative

  • Publish with us

Policies and ethics

Societies and partnerships

Atlantis Press

  • Find a journal
  • Track your research

35 problem-solving techniques and methods for solving complex problems

Problem solving workshop

Design your next session with SessionLab

Join the 150,000+ facilitators 
using SessionLab.

Recommended Articles

A step-by-step guide to planning a workshop, how to create an unforgettable training session in 8 simple steps, 47 useful online tools for workshop planning and meeting facilitation.

All teams and organizations encounter challenges as they grow. There are problems that might occur for teams when it comes to miscommunication or resolving business-critical issues . You may face challenges around growth , design , user engagement, and even team culture and happiness. In short, problem-solving techniques should be part of every team’s skillset.

Problem-solving methods are primarily designed to help a group or team through a process of first identifying problems and challenges , ideating possible solutions , and then evaluating the most suitable .

Finding effective solutions to complex problems isn’t easy, but by using the right process and techniques, you can help your team be more efficient in the process.

So how do you develop strategies that are engaging, and empower your team to solve problems effectively?

In this blog post, we share a series of problem-solving tools you can use in your next workshop or team meeting. You’ll also find some tips for facilitating the process and how to enable others to solve complex problems.

Let’s get started! 

How do you identify problems?

How do you identify the right solution.

  • Tips for more effective problem-solving

Complete problem-solving methods

  • Problem-solving techniques to identify and analyze problems
  • Problem-solving techniques for developing solutions

Problem-solving warm-up activities

Closing activities for a problem-solving process.

Before you can move towards finding the right solution for a given problem, you first need to identify and define the problem you wish to solve. 

Here, you want to clearly articulate what the problem is and allow your group to do the same. Remember that everyone in a group is likely to have differing perspectives and alignment is necessary in order to help the group move forward. 

Identifying a problem accurately also requires that all members of a group are able to contribute their views in an open and safe manner. It can be scary for people to stand up and contribute, especially if the problems or challenges are emotive or personal in nature. Be sure to try and create a psychologically safe space for these kinds of discussions.

Remember that problem analysis and further discussion are also important. Not taking the time to fully analyze and discuss a challenge can result in the development of solutions that are not fit for purpose or do not address the underlying issue.

Successfully identifying and then analyzing a problem means facilitating a group through activities designed to help them clearly and honestly articulate their thoughts and produce usable insight.

With this data, you might then produce a problem statement that clearly describes the problem you wish to be addressed and also state the goal of any process you undertake to tackle this issue.  

Finding solutions is the end goal of any process. Complex organizational challenges can only be solved with an appropriate solution but discovering them requires using the right problem-solving tool.

After you’ve explored a problem and discussed ideas, you need to help a team discuss and choose the right solution. Consensus tools and methods such as those below help a group explore possible solutions before then voting for the best. They’re a great way to tap into the collective intelligence of the group for great results!

Remember that the process is often iterative. Great problem solvers often roadtest a viable solution in a measured way to see what works too. While you might not get the right solution on your first try, the methods below help teams land on the most likely to succeed solution while also holding space for improvement.

Every effective problem solving process begins with an agenda . A well-structured workshop is one of the best methods for successfully guiding a group from exploring a problem to implementing a solution.

In SessionLab, it’s easy to go from an idea to a complete agenda . Start by dragging and dropping your core problem solving activities into place . Add timings, breaks and necessary materials before sharing your agenda with your colleagues.

The resulting agenda will be your guide to an effective and productive problem solving session that will also help you stay organized on the day!

problem solving information system

Tips for more effective problem solving

Problem-solving activities are only one part of the puzzle. While a great method can help unlock your team’s ability to solve problems, without a thoughtful approach and strong facilitation the solutions may not be fit for purpose.

Let’s take a look at some problem-solving tips you can apply to any process to help it be a success!

Clearly define the problem

Jumping straight to solutions can be tempting, though without first clearly articulating a problem, the solution might not be the right one. Many of the problem-solving activities below include sections where the problem is explored and clearly defined before moving on.

This is a vital part of the problem-solving process and taking the time to fully define an issue can save time and effort later. A clear definition helps identify irrelevant information and it also ensures that your team sets off on the right track.

Don’t jump to conclusions

It’s easy for groups to exhibit cognitive bias or have preconceived ideas about both problems and potential solutions. Be sure to back up any problem statements or potential solutions with facts, research, and adequate forethought.

The best techniques ask participants to be methodical and challenge preconceived notions. Make sure you give the group enough time and space to collect relevant information and consider the problem in a new way. By approaching the process with a clear, rational mindset, you’ll often find that better solutions are more forthcoming.  

Try different approaches  

Problems come in all shapes and sizes and so too should the methods you use to solve them. If you find that one approach isn’t yielding results and your team isn’t finding different solutions, try mixing it up. You’ll be surprised at how using a new creative activity can unblock your team and generate great solutions.

Don’t take it personally 

Depending on the nature of your team or organizational problems, it’s easy for conversations to get heated. While it’s good for participants to be engaged in the discussions, ensure that emotions don’t run too high and that blame isn’t thrown around while finding solutions.

You’re all in it together, and even if your team or area is seeing problems, that isn’t necessarily a disparagement of you personally. Using facilitation skills to manage group dynamics is one effective method of helping conversations be more constructive.

Get the right people in the room

Your problem-solving method is often only as effective as the group using it. Getting the right people on the job and managing the number of people present is important too!

If the group is too small, you may not get enough different perspectives to effectively solve a problem. If the group is too large, you can go round and round during the ideation stages.

Creating the right group makeup is also important in ensuring you have the necessary expertise and skillset to both identify and follow up on potential solutions. Carefully consider who to include at each stage to help ensure your problem-solving method is followed and positioned for success.

Document everything

The best solutions can take refinement, iteration, and reflection to come out. Get into a habit of documenting your process in order to keep all the learnings from the session and to allow ideas to mature and develop. Many of the methods below involve the creation of documents or shared resources. Be sure to keep and share these so everyone can benefit from the work done!

Bring a facilitator 

Facilitation is all about making group processes easier. With a subject as potentially emotive and important as problem-solving, having an impartial third party in the form of a facilitator can make all the difference in finding great solutions and keeping the process moving. Consider bringing a facilitator to your problem-solving session to get better results and generate meaningful solutions!

Develop your problem-solving skills

It takes time and practice to be an effective problem solver. While some roles or participants might more naturally gravitate towards problem-solving, it can take development and planning to help everyone create better solutions.

You might develop a training program, run a problem-solving workshop or simply ask your team to practice using the techniques below. Check out our post on problem-solving skills to see how you and your group can develop the right mental process and be more resilient to issues too!

Design a great agenda

Workshops are a great format for solving problems. With the right approach, you can focus a group and help them find the solutions to their own problems. But designing a process can be time-consuming and finding the right activities can be difficult.

Check out our workshop planning guide to level-up your agenda design and start running more effective workshops. Need inspiration? Check out templates designed by expert facilitators to help you kickstart your process!

In this section, we’ll look at in-depth problem-solving methods that provide a complete end-to-end process for developing effective solutions. These will help guide your team from the discovery and definition of a problem through to delivering the right solution.

If you’re looking for an all-encompassing method or problem-solving model, these processes are a great place to start. They’ll ask your team to challenge preconceived ideas and adopt a mindset for solving problems more effectively.

  • Six Thinking Hats
  • Lightning Decision Jam
  • Problem Definition Process
  • Discovery & Action Dialogue
Design Sprint 2.0
  • Open Space Technology

1. Six Thinking Hats

Individual approaches to solving a problem can be very different based on what team or role an individual holds. It can be easy for existing biases or perspectives to find their way into the mix, or for internal politics to direct a conversation.

Six Thinking Hats is a classic method for identifying the problems that need to be solved and enables your team to consider them from different angles, whether that is by focusing on facts and data, creative solutions, or by considering why a particular solution might not work.

Like all problem-solving frameworks, Six Thinking Hats is effective at helping teams remove roadblocks from a conversation or discussion and come to terms with all the aspects necessary to solve complex problems.

2. Lightning Decision Jam

Featured courtesy of Jonathan Courtney of AJ&Smart Berlin, Lightning Decision Jam is one of those strategies that should be in every facilitation toolbox. Exploring problems and finding solutions is often creative in nature, though as with any creative process, there is the potential to lose focus and get lost.

Unstructured discussions might get you there in the end, but it’s much more effective to use a method that creates a clear process and team focus.

In Lightning Decision Jam, participants are invited to begin by writing challenges, concerns, or mistakes on post-its without discussing them before then being invited by the moderator to present them to the group.

From there, the team vote on which problems to solve and are guided through steps that will allow them to reframe those problems, create solutions and then decide what to execute on. 

By deciding the problems that need to be solved as a team before moving on, this group process is great for ensuring the whole team is aligned and can take ownership over the next stages. 

Lightning Decision Jam (LDJ)   #action   #decision making   #problem solving   #issue analysis   #innovation   #design   #remote-friendly   The problem with anything that requires creative thinking is that it’s easy to get lost—lose focus and fall into the trap of having useless, open-ended, unstructured discussions. Here’s the most effective solution I’ve found: Replace all open, unstructured discussion with a clear process. What to use this exercise for: Anything which requires a group of people to make decisions, solve problems or discuss challenges. It’s always good to frame an LDJ session with a broad topic, here are some examples: The conversion flow of our checkout Our internal design process How we organise events Keeping up with our competition Improving sales flow

3. Problem Definition Process

While problems can be complex, the problem-solving methods you use to identify and solve those problems can often be simple in design. 

By taking the time to truly identify and define a problem before asking the group to reframe the challenge as an opportunity, this method is a great way to enable change.

Begin by identifying a focus question and exploring the ways in which it manifests before splitting into five teams who will each consider the problem using a different method: escape, reversal, exaggeration, distortion or wishful. Teams develop a problem objective and create ideas in line with their method before then feeding them back to the group.

This method is great for enabling in-depth discussions while also creating space for finding creative solutions too!

Problem Definition   #problem solving   #idea generation   #creativity   #online   #remote-friendly   A problem solving technique to define a problem, challenge or opportunity and to generate ideas.

4. The 5 Whys 

Sometimes, a group needs to go further with their strategies and analyze the root cause at the heart of organizational issues. An RCA or root cause analysis is the process of identifying what is at the heart of business problems or recurring challenges. 

The 5 Whys is a simple and effective method of helping a group go find the root cause of any problem or challenge and conduct analysis that will deliver results. 

By beginning with the creation of a problem statement and going through five stages to refine it, The 5 Whys provides everything you need to truly discover the cause of an issue.

The 5 Whys   #hyperisland   #innovation   This simple and powerful method is useful for getting to the core of a problem or challenge. As the title suggests, the group defines a problems, then asks the question “why” five times, often using the resulting explanation as a starting point for creative problem solving.

5. World Cafe

World Cafe is a simple but powerful facilitation technique to help bigger groups to focus their energy and attention on solving complex problems.

World Cafe enables this approach by creating a relaxed atmosphere where participants are able to self-organize and explore topics relevant and important to them which are themed around a central problem-solving purpose. Create the right atmosphere by modeling your space after a cafe and after guiding the group through the method, let them take the lead!

Making problem-solving a part of your organization’s culture in the long term can be a difficult undertaking. More approachable formats like World Cafe can be especially effective in bringing people unfamiliar with workshops into the fold. 

World Cafe   #hyperisland   #innovation   #issue analysis   World Café is a simple yet powerful method, originated by Juanita Brown, for enabling meaningful conversations driven completely by participants and the topics that are relevant and important to them. Facilitators create a cafe-style space and provide simple guidelines. Participants then self-organize and explore a set of relevant topics or questions for conversation.

6. Discovery & Action Dialogue (DAD)

One of the best approaches is to create a safe space for a group to share and discover practices and behaviors that can help them find their own solutions.

With DAD, you can help a group choose which problems they wish to solve and which approaches they will take to do so. It’s great at helping remove resistance to change and can help get buy-in at every level too!

This process of enabling frontline ownership is great in ensuring follow-through and is one of the methods you will want in your toolbox as a facilitator.

Discovery & Action Dialogue (DAD)   #idea generation   #liberating structures   #action   #issue analysis   #remote-friendly   DADs make it easy for a group or community to discover practices and behaviors that enable some individuals (without access to special resources and facing the same constraints) to find better solutions than their peers to common problems. These are called positive deviant (PD) behaviors and practices. DADs make it possible for people in the group, unit, or community to discover by themselves these PD practices. DADs also create favorable conditions for stimulating participants’ creativity in spaces where they can feel safe to invent new and more effective practices. Resistance to change evaporates as participants are unleashed to choose freely which practices they will adopt or try and which problems they will tackle. DADs make it possible to achieve frontline ownership of solutions.

7. Design Sprint 2.0

Want to see how a team can solve big problems and move forward with prototyping and testing solutions in a few days? The Design Sprint 2.0 template from Jake Knapp, author of Sprint, is a complete agenda for a with proven results.

Developing the right agenda can involve difficult but necessary planning. Ensuring all the correct steps are followed can also be stressful or time-consuming depending on your level of experience.

Use this complete 4-day workshop template if you are finding there is no obvious solution to your challenge and want to focus your team around a specific problem that might require a shortcut to launching a minimum viable product or waiting for the organization-wide implementation of a solution.

8. Open space technology

Open space technology- developed by Harrison Owen – creates a space where large groups are invited to take ownership of their problem solving and lead individual sessions. Open space technology is a great format when you have a great deal of expertise and insight in the room and want to allow for different takes and approaches on a particular theme or problem you need to be solved.

Start by bringing your participants together to align around a central theme and focus their efforts. Explain the ground rules to help guide the problem-solving process and then invite members to identify any issue connecting to the central theme that they are interested in and are prepared to take responsibility for.

Once participants have decided on their approach to the core theme, they write their issue on a piece of paper, announce it to the group, pick a session time and place, and post the paper on the wall. As the wall fills up with sessions, the group is then invited to join the sessions that interest them the most and which they can contribute to, then you’re ready to begin!

Everyone joins the problem-solving group they’ve signed up to, record the discussion and if appropriate, findings can then be shared with the rest of the group afterward.

Open Space Technology   #action plan   #idea generation   #problem solving   #issue analysis   #large group   #online   #remote-friendly   Open Space is a methodology for large groups to create their agenda discerning important topics for discussion, suitable for conferences, community gatherings and whole system facilitation

Techniques to identify and analyze problems

Using a problem-solving method to help a team identify and analyze a problem can be a quick and effective addition to any workshop or meeting.

While further actions are always necessary, you can generate momentum and alignment easily, and these activities are a great place to get started.

We’ve put together this list of techniques to help you and your team with problem identification, analysis, and discussion that sets the foundation for developing effective solutions.

Let’s take a look!

  • The Creativity Dice
  • Fishbone Analysis
  • Problem Tree
  • SWOT Analysis
  • Agreement-Certainty Matrix
  • The Journalistic Six
  • LEGO Challenge
  • What, So What, Now What?
  • Journalists

Individual and group perspectives are incredibly important, but what happens if people are set in their minds and need a change of perspective in order to approach a problem more effectively?

Flip It is a method we love because it is both simple to understand and run, and allows groups to understand how their perspectives and biases are formed. 

Participants in Flip It are first invited to consider concerns, issues, or problems from a perspective of fear and write them on a flip chart. Then, the group is asked to consider those same issues from a perspective of hope and flip their understanding.  

No problem and solution is free from existing bias and by changing perspectives with Flip It, you can then develop a problem solving model quickly and effectively.

Flip It!   #gamestorming   #problem solving   #action   Often, a change in a problem or situation comes simply from a change in our perspectives. Flip It! is a quick game designed to show players that perspectives are made, not born.

10. The Creativity Dice

One of the most useful problem solving skills you can teach your team is of approaching challenges with creativity, flexibility, and openness. Games like The Creativity Dice allow teams to overcome the potential hurdle of too much linear thinking and approach the process with a sense of fun and speed. 

In The Creativity Dice, participants are organized around a topic and roll a dice to determine what they will work on for a period of 3 minutes at a time. They might roll a 3 and work on investigating factual information on the chosen topic. They might roll a 1 and work on identifying the specific goals, standards, or criteria for the session.

Encouraging rapid work and iteration while asking participants to be flexible are great skills to cultivate. Having a stage for idea incubation in this game is also important. Moments of pause can help ensure the ideas that are put forward are the most suitable. 

The Creativity Dice   #creativity   #problem solving   #thiagi   #issue analysis   Too much linear thinking is hazardous to creative problem solving. To be creative, you should approach the problem (or the opportunity) from different points of view. You should leave a thought hanging in mid-air and move to another. This skipping around prevents premature closure and lets your brain incubate one line of thought while you consciously pursue another.

11. Fishbone Analysis

Organizational or team challenges are rarely simple, and it’s important to remember that one problem can be an indication of something that goes deeper and may require further consideration to be solved.

Fishbone Analysis helps groups to dig deeper and understand the origins of a problem. It’s a great example of a root cause analysis method that is simple for everyone on a team to get their head around. 

Participants in this activity are asked to annotate a diagram of a fish, first adding the problem or issue to be worked on at the head of a fish before then brainstorming the root causes of the problem and adding them as bones on the fish. 

Using abstractions such as a diagram of a fish can really help a team break out of their regular thinking and develop a creative approach.

Fishbone Analysis   #problem solving   ##root cause analysis   #decision making   #online facilitation   A process to help identify and understand the origins of problems, issues or observations.

12. Problem Tree 

Encouraging visual thinking can be an essential part of many strategies. By simply reframing and clarifying problems, a group can move towards developing a problem solving model that works for them. 

In Problem Tree, groups are asked to first brainstorm a list of problems – these can be design problems, team problems or larger business problems – and then organize them into a hierarchy. The hierarchy could be from most important to least important or abstract to practical, though the key thing with problem solving games that involve this aspect is that your group has some way of managing and sorting all the issues that are raised.

Once you have a list of problems that need to be solved and have organized them accordingly, you’re then well-positioned for the next problem solving steps.

Problem tree   #define intentions   #create   #design   #issue analysis   A problem tree is a tool to clarify the hierarchy of problems addressed by the team within a design project; it represents high level problems or related sublevel problems.

13. SWOT Analysis

Chances are you’ve heard of the SWOT Analysis before. This problem-solving method focuses on identifying strengths, weaknesses, opportunities, and threats is a tried and tested method for both individuals and teams.

Start by creating a desired end state or outcome and bare this in mind – any process solving model is made more effective by knowing what you are moving towards. Create a quadrant made up of the four categories of a SWOT analysis and ask participants to generate ideas based on each of those quadrants.

Once you have those ideas assembled in their quadrants, cluster them together based on their affinity with other ideas. These clusters are then used to facilitate group conversations and move things forward. 

SWOT analysis   #gamestorming   #problem solving   #action   #meeting facilitation   The SWOT Analysis is a long-standing technique of looking at what we have, with respect to the desired end state, as well as what we could improve on. It gives us an opportunity to gauge approaching opportunities and dangers, and assess the seriousness of the conditions that affect our future. When we understand those conditions, we can influence what comes next.

14. Agreement-Certainty Matrix

Not every problem-solving approach is right for every challenge, and deciding on the right method for the challenge at hand is a key part of being an effective team.

The Agreement Certainty matrix helps teams align on the nature of the challenges facing them. By sorting problems from simple to chaotic, your team can understand what methods are suitable for each problem and what they can do to ensure effective results. 

If you are already using Liberating Structures techniques as part of your problem-solving strategy, the Agreement-Certainty Matrix can be an invaluable addition to your process. We’ve found it particularly if you are having issues with recurring problems in your organization and want to go deeper in understanding the root cause. 

Agreement-Certainty Matrix   #issue analysis   #liberating structures   #problem solving   You can help individuals or groups avoid the frequent mistake of trying to solve a problem with methods that are not adapted to the nature of their challenge. The combination of two questions makes it possible to easily sort challenges into four categories: simple, complicated, complex , and chaotic .  A problem is simple when it can be solved reliably with practices that are easy to duplicate.  It is complicated when experts are required to devise a sophisticated solution that will yield the desired results predictably.  A problem is complex when there are several valid ways to proceed but outcomes are not predictable in detail.  Chaotic is when the context is too turbulent to identify a path forward.  A loose analogy may be used to describe these differences: simple is like following a recipe, complicated like sending a rocket to the moon, complex like raising a child, and chaotic is like the game “Pin the Tail on the Donkey.”  The Liberating Structures Matching Matrix in Chapter 5 can be used as the first step to clarify the nature of a challenge and avoid the mismatches between problems and solutions that are frequently at the root of chronic, recurring problems.

Organizing and charting a team’s progress can be important in ensuring its success. SQUID (Sequential Question and Insight Diagram) is a great model that allows a team to effectively switch between giving questions and answers and develop the skills they need to stay on track throughout the process. 

Begin with two different colored sticky notes – one for questions and one for answers – and with your central topic (the head of the squid) on the board. Ask the group to first come up with a series of questions connected to their best guess of how to approach the topic. Ask the group to come up with answers to those questions, fix them to the board and connect them with a line. After some discussion, go back to question mode by responding to the generated answers or other points on the board.

It’s rewarding to see a diagram grow throughout the exercise, and a completed SQUID can provide a visual resource for future effort and as an example for other teams.

SQUID   #gamestorming   #project planning   #issue analysis   #problem solving   When exploring an information space, it’s important for a group to know where they are at any given time. By using SQUID, a group charts out the territory as they go and can navigate accordingly. SQUID stands for Sequential Question and Insight Diagram.

16. Speed Boat

To continue with our nautical theme, Speed Boat is a short and sweet activity that can help a team quickly identify what employees, clients or service users might have a problem with and analyze what might be standing in the way of achieving a solution.

Methods that allow for a group to make observations, have insights and obtain those eureka moments quickly are invaluable when trying to solve complex problems.

In Speed Boat, the approach is to first consider what anchors and challenges might be holding an organization (or boat) back. Bonus points if you are able to identify any sharks in the water and develop ideas that can also deal with competitors!   

Speed Boat   #gamestorming   #problem solving   #action   Speedboat is a short and sweet way to identify what your employees or clients don’t like about your product/service or what’s standing in the way of a desired goal.

17. The Journalistic Six

Some of the most effective ways of solving problems is by encouraging teams to be more inclusive and diverse in their thinking.

Based on the six key questions journalism students are taught to answer in articles and news stories, The Journalistic Six helps create teams to see the whole picture. By using who, what, when, where, why, and how to facilitate the conversation and encourage creative thinking, your team can make sure that the problem identification and problem analysis stages of the are covered exhaustively and thoughtfully. Reporter’s notebook and dictaphone optional.

The Journalistic Six – Who What When Where Why How   #idea generation   #issue analysis   #problem solving   #online   #creative thinking   #remote-friendly   A questioning method for generating, explaining, investigating ideas.

18. LEGO Challenge

Now for an activity that is a little out of the (toy) box. LEGO Serious Play is a facilitation methodology that can be used to improve creative thinking and problem-solving skills. 

The LEGO Challenge includes giving each member of the team an assignment that is hidden from the rest of the group while they create a structure without speaking.

What the LEGO challenge brings to the table is a fun working example of working with stakeholders who might not be on the same page to solve problems. Also, it’s LEGO! Who doesn’t love LEGO! 

LEGO Challenge   #hyperisland   #team   A team-building activity in which groups must work together to build a structure out of LEGO, but each individual has a secret “assignment” which makes the collaborative process more challenging. It emphasizes group communication, leadership dynamics, conflict, cooperation, patience and problem solving strategy.

19. What, So What, Now What?

If not carefully managed, the problem identification and problem analysis stages of the problem-solving process can actually create more problems and misunderstandings.

The What, So What, Now What? problem-solving activity is designed to help collect insights and move forward while also eliminating the possibility of disagreement when it comes to identifying, clarifying, and analyzing organizational or work problems. 

Facilitation is all about bringing groups together so that might work on a shared goal and the best problem-solving strategies ensure that teams are aligned in purpose, if not initially in opinion or insight.

Throughout the three steps of this game, you give everyone on a team to reflect on a problem by asking what happened, why it is important, and what actions should then be taken. 

This can be a great activity for bringing our individual perceptions about a problem or challenge and contextualizing it in a larger group setting. This is one of the most important problem-solving skills you can bring to your organization.

W³ – What, So What, Now What?   #issue analysis   #innovation   #liberating structures   You can help groups reflect on a shared experience in a way that builds understanding and spurs coordinated action while avoiding unproductive conflict. It is possible for every voice to be heard while simultaneously sifting for insights and shaping new direction. Progressing in stages makes this practical—from collecting facts about What Happened to making sense of these facts with So What and finally to what actions logically follow with Now What . The shared progression eliminates most of the misunderstandings that otherwise fuel disagreements about what to do. Voila!

20. Journalists  

Problem analysis can be one of the most important and decisive stages of all problem-solving tools. Sometimes, a team can become bogged down in the details and are unable to move forward.

Journalists is an activity that can avoid a group from getting stuck in the problem identification or problem analysis stages of the process.

In Journalists, the group is invited to draft the front page of a fictional newspaper and figure out what stories deserve to be on the cover and what headlines those stories will have. By reframing how your problems and challenges are approached, you can help a team move productively through the process and be better prepared for the steps to follow.

Journalists   #vision   #big picture   #issue analysis   #remote-friendly   This is an exercise to use when the group gets stuck in details and struggles to see the big picture. Also good for defining a vision.

Problem-solving techniques for developing solutions 

The success of any problem-solving process can be measured by the solutions it produces. After you’ve defined the issue, explored existing ideas, and ideated, it’s time to narrow down to the correct solution.

Use these problem-solving techniques when you want to help your team find consensus, compare possible solutions, and move towards taking action on a particular problem.

  • Improved Solutions
  • Four-Step Sketch
  • 15% Solutions
  • How-Now-Wow matrix
  • Impact Effort Matrix

21. Mindspin  

Brainstorming is part of the bread and butter of the problem-solving process and all problem-solving strategies benefit from getting ideas out and challenging a team to generate solutions quickly. 

With Mindspin, participants are encouraged not only to generate ideas but to do so under time constraints and by slamming down cards and passing them on. By doing multiple rounds, your team can begin with a free generation of possible solutions before moving on to developing those solutions and encouraging further ideation. 

This is one of our favorite problem-solving activities and can be great for keeping the energy up throughout the workshop. Remember the importance of helping people become engaged in the process – energizing problem-solving techniques like Mindspin can help ensure your team stays engaged and happy, even when the problems they’re coming together to solve are complex. 

MindSpin   #teampedia   #idea generation   #problem solving   #action   A fast and loud method to enhance brainstorming within a team. Since this activity has more than round ideas that are repetitive can be ruled out leaving more creative and innovative answers to the challenge.

22. Improved Solutions

After a team has successfully identified a problem and come up with a few solutions, it can be tempting to call the work of the problem-solving process complete. That said, the first solution is not necessarily the best, and by including a further review and reflection activity into your problem-solving model, you can ensure your group reaches the best possible result. 

One of a number of problem-solving games from Thiagi Group, Improved Solutions helps you go the extra mile and develop suggested solutions with close consideration and peer review. By supporting the discussion of several problems at once and by shifting team roles throughout, this problem-solving technique is a dynamic way of finding the best solution. 

Improved Solutions   #creativity   #thiagi   #problem solving   #action   #team   You can improve any solution by objectively reviewing its strengths and weaknesses and making suitable adjustments. In this creativity framegame, you improve the solutions to several problems. To maintain objective detachment, you deal with a different problem during each of six rounds and assume different roles (problem owner, consultant, basher, booster, enhancer, and evaluator) during each round. At the conclusion of the activity, each player ends up with two solutions to her problem.

23. Four Step Sketch

Creative thinking and visual ideation does not need to be confined to the opening stages of your problem-solving strategies. Exercises that include sketching and prototyping on paper can be effective at the solution finding and development stage of the process, and can be great for keeping a team engaged. 

By going from simple notes to a crazy 8s round that involves rapidly sketching 8 variations on their ideas before then producing a final solution sketch, the group is able to iterate quickly and visually. Problem-solving techniques like Four-Step Sketch are great if you have a group of different thinkers and want to change things up from a more textual or discussion-based approach.

Four-Step Sketch   #design sprint   #innovation   #idea generation   #remote-friendly   The four-step sketch is an exercise that helps people to create well-formed concepts through a structured process that includes: Review key information Start design work on paper,  Consider multiple variations , Create a detailed solution . This exercise is preceded by a set of other activities allowing the group to clarify the challenge they want to solve. See how the Four Step Sketch exercise fits into a Design Sprint

24. 15% Solutions

Some problems are simpler than others and with the right problem-solving activities, you can empower people to take immediate actions that can help create organizational change. 

Part of the liberating structures toolkit, 15% solutions is a problem-solving technique that focuses on finding and implementing solutions quickly. A process of iterating and making small changes quickly can help generate momentum and an appetite for solving complex problems.

Problem-solving strategies can live and die on whether people are onboard. Getting some quick wins is a great way of getting people behind the process.   

It can be extremely empowering for a team to realize that problem-solving techniques can be deployed quickly and easily and delineate between things they can positively impact and those things they cannot change. 

15% Solutions   #action   #liberating structures   #remote-friendly   You can reveal the actions, however small, that everyone can do immediately. At a minimum, these will create momentum, and that may make a BIG difference.  15% Solutions show that there is no reason to wait around, feel powerless, or fearful. They help people pick it up a level. They get individuals and the group to focus on what is within their discretion instead of what they cannot change.  With a very simple question, you can flip the conversation to what can be done and find solutions to big problems that are often distributed widely in places not known in advance. Shifting a few grains of sand may trigger a landslide and change the whole landscape.

25. How-Now-Wow Matrix

The problem-solving process is often creative, as complex problems usually require a change of thinking and creative response in order to find the best solutions. While it’s common for the first stages to encourage creative thinking, groups can often gravitate to familiar solutions when it comes to the end of the process. 

When selecting solutions, you don’t want to lose your creative energy! The How-Now-Wow Matrix from Gamestorming is a great problem-solving activity that enables a group to stay creative and think out of the box when it comes to selecting the right solution for a given problem.

Problem-solving techniques that encourage creative thinking and the ideation and selection of new solutions can be the most effective in organisational change. Give the How-Now-Wow Matrix a go, and not just for how pleasant it is to say out loud. 

How-Now-Wow Matrix   #gamestorming   #idea generation   #remote-friendly   When people want to develop new ideas, they most often think out of the box in the brainstorming or divergent phase. However, when it comes to convergence, people often end up picking ideas that are most familiar to them. This is called a ‘creative paradox’ or a ‘creadox’. The How-Now-Wow matrix is an idea selection tool that breaks the creadox by forcing people to weigh each idea on 2 parameters.

26. Impact and Effort Matrix

All problem-solving techniques hope to not only find solutions to a given problem or challenge but to find the best solution. When it comes to finding a solution, groups are invited to put on their decision-making hats and really think about how a proposed idea would work in practice. 

The Impact and Effort Matrix is one of the problem-solving techniques that fall into this camp, empowering participants to first generate ideas and then categorize them into a 2×2 matrix based on impact and effort.

Activities that invite critical thinking while remaining simple are invaluable. Use the Impact and Effort Matrix to move from ideation and towards evaluating potential solutions before then committing to them. 

Impact and Effort Matrix   #gamestorming   #decision making   #action   #remote-friendly   In this decision-making exercise, possible actions are mapped based on two factors: effort required to implement and potential impact. Categorizing ideas along these lines is a useful technique in decision making, as it obliges contributors to balance and evaluate suggested actions before committing to them.

27. Dotmocracy

If you’ve followed each of the problem-solving steps with your group successfully, you should move towards the end of your process with heaps of possible solutions developed with a specific problem in mind. But how do you help a group go from ideation to putting a solution into action? 

Dotmocracy – or Dot Voting -is a tried and tested method of helping a team in the problem-solving process make decisions and put actions in place with a degree of oversight and consensus. 

One of the problem-solving techniques that should be in every facilitator’s toolbox, Dot Voting is fast and effective and can help identify the most popular and best solutions and help bring a group to a decision effectively. 

Dotmocracy   #action   #decision making   #group prioritization   #hyperisland   #remote-friendly   Dotmocracy is a simple method for group prioritization or decision-making. It is not an activity on its own, but a method to use in processes where prioritization or decision-making is the aim. The method supports a group to quickly see which options are most popular or relevant. The options or ideas are written on post-its and stuck up on a wall for the whole group to see. Each person votes for the options they think are the strongest, and that information is used to inform a decision.

All facilitators know that warm-ups and icebreakers are useful for any workshop or group process. Problem-solving workshops are no different.

Use these problem-solving techniques to warm up a group and prepare them for the rest of the process. Activating your group by tapping into some of the top problem-solving skills can be one of the best ways to see great outcomes from your session.

  • Check-in/Check-out
  • Doodling Together
  • Show and Tell
  • Constellations
  • Draw a Tree

28. Check-in / Check-out

Solid processes are planned from beginning to end, and the best facilitators know that setting the tone and establishing a safe, open environment can be integral to a successful problem-solving process.

Check-in / Check-out is a great way to begin and/or bookend a problem-solving workshop. Checking in to a session emphasizes that everyone will be seen, heard, and expected to contribute. 

If you are running a series of meetings, setting a consistent pattern of checking in and checking out can really help your team get into a groove. We recommend this opening-closing activity for small to medium-sized groups though it can work with large groups if they’re disciplined!

Check-in / Check-out   #team   #opening   #closing   #hyperisland   #remote-friendly   Either checking-in or checking-out is a simple way for a team to open or close a process, symbolically and in a collaborative way. Checking-in/out invites each member in a group to be present, seen and heard, and to express a reflection or a feeling. Checking-in emphasizes presence, focus and group commitment; checking-out emphasizes reflection and symbolic closure.

29. Doodling Together  

Thinking creatively and not being afraid to make suggestions are important problem-solving skills for any group or team, and warming up by encouraging these behaviors is a great way to start. 

Doodling Together is one of our favorite creative ice breaker games – it’s quick, effective, and fun and can make all following problem-solving steps easier by encouraging a group to collaborate visually. By passing cards and adding additional items as they go, the workshop group gets into a groove of co-creation and idea development that is crucial to finding solutions to problems. 

Doodling Together   #collaboration   #creativity   #teamwork   #fun   #team   #visual methods   #energiser   #icebreaker   #remote-friendly   Create wild, weird and often funny postcards together & establish a group’s creative confidence.

30. Show and Tell

You might remember some version of Show and Tell from being a kid in school and it’s a great problem-solving activity to kick off a session.

Asking participants to prepare a little something before a workshop by bringing an object for show and tell can help them warm up before the session has even begun! Games that include a physical object can also help encourage early engagement before moving onto more big-picture thinking.

By asking your participants to tell stories about why they chose to bring a particular item to the group, you can help teams see things from new perspectives and see both differences and similarities in the way they approach a topic. Great groundwork for approaching a problem-solving process as a team! 

Show and Tell   #gamestorming   #action   #opening   #meeting facilitation   Show and Tell taps into the power of metaphors to reveal players’ underlying assumptions and associations around a topic The aim of the game is to get a deeper understanding of stakeholders’ perspectives on anything—a new project, an organizational restructuring, a shift in the company’s vision or team dynamic.

31. Constellations

Who doesn’t love stars? Constellations is a great warm-up activity for any workshop as it gets people up off their feet, energized, and ready to engage in new ways with established topics. It’s also great for showing existing beliefs, biases, and patterns that can come into play as part of your session.

Using warm-up games that help build trust and connection while also allowing for non-verbal responses can be great for easing people into the problem-solving process and encouraging engagement from everyone in the group. Constellations is great in large spaces that allow for movement and is definitely a practical exercise to allow the group to see patterns that are otherwise invisible. 

Constellations   #trust   #connection   #opening   #coaching   #patterns   #system   Individuals express their response to a statement or idea by standing closer or further from a central object. Used with teams to reveal system, hidden patterns, perspectives.

32. Draw a Tree

Problem-solving games that help raise group awareness through a central, unifying metaphor can be effective ways to warm-up a group in any problem-solving model.

Draw a Tree is a simple warm-up activity you can use in any group and which can provide a quick jolt of energy. Start by asking your participants to draw a tree in just 45 seconds – they can choose whether it will be abstract or realistic. 

Once the timer is up, ask the group how many people included the roots of the tree and use this as a means to discuss how we can ignore important parts of any system simply because they are not visible.

All problem-solving strategies are made more effective by thinking of problems critically and by exposing things that may not normally come to light. Warm-up games like Draw a Tree are great in that they quickly demonstrate some key problem-solving skills in an accessible and effective way.

Draw a Tree   #thiagi   #opening   #perspectives   #remote-friendly   With this game you can raise awarness about being more mindful, and aware of the environment we live in.

Each step of the problem-solving workshop benefits from an intelligent deployment of activities, games, and techniques. Bringing your session to an effective close helps ensure that solutions are followed through on and that you also celebrate what has been achieved.

Here are some problem-solving activities you can use to effectively close a workshop or meeting and ensure the great work you’ve done can continue afterward.

  • One Breath Feedback
  • Who What When Matrix
  • Response Cards

How do I conclude a problem-solving process?

All good things must come to an end. With the bulk of the work done, it can be tempting to conclude your workshop swiftly and without a moment to debrief and align. This can be problematic in that it doesn’t allow your team to fully process the results or reflect on the process.

At the end of an effective session, your team will have gone through a process that, while productive, can be exhausting. It’s important to give your group a moment to take a breath, ensure that they are clear on future actions, and provide short feedback before leaving the space. 

The primary purpose of any problem-solving method is to generate solutions and then implement them. Be sure to take the opportunity to ensure everyone is aligned and ready to effectively implement the solutions you produced in the workshop.

Remember that every process can be improved and by giving a short moment to collect feedback in the session, you can further refine your problem-solving methods and see further success in the future too.

33. One Breath Feedback

Maintaining attention and focus during the closing stages of a problem-solving workshop can be tricky and so being concise when giving feedback can be important. It’s easy to incur “death by feedback” should some team members go on for too long sharing their perspectives in a quick feedback round. 

One Breath Feedback is a great closing activity for workshops. You give everyone an opportunity to provide feedback on what they’ve done but only in the space of a single breath. This keeps feedback short and to the point and means that everyone is encouraged to provide the most important piece of feedback to them. 

One breath feedback   #closing   #feedback   #action   This is a feedback round in just one breath that excels in maintaining attention: each participants is able to speak during just one breath … for most people that’s around 20 to 25 seconds … unless of course you’ve been a deep sea diver in which case you’ll be able to do it for longer.

34. Who What When Matrix 

Matrices feature as part of many effective problem-solving strategies and with good reason. They are easily recognizable, simple to use, and generate results.

The Who What When Matrix is a great tool to use when closing your problem-solving session by attributing a who, what and when to the actions and solutions you have decided upon. The resulting matrix is a simple, easy-to-follow way of ensuring your team can move forward. 

Great solutions can’t be enacted without action and ownership. Your problem-solving process should include a stage for allocating tasks to individuals or teams and creating a realistic timeframe for those solutions to be implemented or checked out. Use this method to keep the solution implementation process clear and simple for all involved. 

Who/What/When Matrix   #gamestorming   #action   #project planning   With Who/What/When matrix, you can connect people with clear actions they have defined and have committed to.

35. Response cards

Group discussion can comprise the bulk of most problem-solving activities and by the end of the process, you might find that your team is talked out! 

Providing a means for your team to give feedback with short written notes can ensure everyone is head and can contribute without the need to stand up and talk. Depending on the needs of the group, giving an alternative can help ensure everyone can contribute to your problem-solving model in the way that makes the most sense for them.

Response Cards is a great way to close a workshop if you are looking for a gentle warm-down and want to get some swift discussion around some of the feedback that is raised. 

Response Cards   #debriefing   #closing   #structured sharing   #questions and answers   #thiagi   #action   It can be hard to involve everyone during a closing of a session. Some might stay in the background or get unheard because of louder participants. However, with the use of Response Cards, everyone will be involved in providing feedback or clarify questions at the end of a session.

Save time and effort discovering the right solutions

A structured problem solving process is a surefire way of solving tough problems, discovering creative solutions and driving organizational change. But how can you design for successful outcomes?

With SessionLab, it’s easy to design engaging workshops that deliver results. Drag, drop and reorder blocks  to build your agenda. When you make changes or update your agenda, your session  timing   adjusts automatically , saving you time on manual adjustments.

Collaborating with stakeholders or clients? Share your agenda with a single click and collaborate in real-time. No more sending documents back and forth over email.

Explore  how to use SessionLab  to design effective problem solving workshops or  watch this five minute video  to see the planner in action!

problem solving information system

Over to you

The problem-solving process can often be as complicated and multifaceted as the problems they are set-up to solve. With the right problem-solving techniques and a mix of creative exercises designed to guide discussion and generate purposeful ideas, we hope we’ve given you the tools to find the best solutions as simply and easily as possible.

Is there a problem-solving technique that you are missing here? Do you have a favorite activity or method you use when facilitating? Let us know in the comments below, we’d love to hear from you! 

' src=

thank you very much for these excellent techniques

' src=

Certainly wonderful article, very detailed. Shared!

Leave a Comment Cancel reply

Your email address will not be published. Required fields are marked *

cycle of workshop planning steps

Going from a mere idea to a workshop that delivers results for your clients can feel like a daunting task. In this piece, we will shine a light on all the work behind the scenes and help you learn how to plan a workshop from start to finish. On a good day, facilitation can feel like effortless magic, but that is mostly the result of backstage work, foresight, and a lot of careful planning. Read on to learn a step-by-step approach to breaking the process of planning a workshop into small, manageable chunks.  The flow starts with the first meeting with a client to define the purposes of a workshop.…

problem solving information system

How does learning work? A clever 9-year-old once told me: “I know I am learning something new when I am surprised.” The science of adult learning tells us that, in order to learn new skills (which, unsurprisingly, is harder for adults to do than kids) grown-ups need to first get into a specific headspace.  In a business, this approach is often employed in a training session where employees learn new skills or work on professional development. But how do you ensure your training is effective? In this guide, we'll explore how to create an effective training session plan and run engaging training sessions. As team leader, project manager, or consultant,…

problem solving information system

Effective online tools are a necessity for smooth and engaging virtual workshops and meetings. But how do you choose the right ones? Do you sometimes feel that the good old pen and paper or MS Office toolkit and email leaves you struggling to stay on top of managing and delivering your workshop? Fortunately, there are plenty of online tools to make your life easier when you need to facilitate a meeting and lead workshops. In this post, we’ll share our favorite online tools you can use to make your job as a facilitator easier. In fact, there are plenty of free online workshop tools and meeting facilitation software you can…

Design your next workshop with SessionLab

Join the 150,000 facilitators using SessionLab

Sign up for free

An effective problem solving process for IT professionals

1. what is the actual problem.

This should be the first question an IT professional should ask when it comes to troubleshooting various IT related issues – even if only to verify the information that has already been provided. Typically this will mean having a conversation with the individual or group of individuals that reported the problem in the first place. It’s certainly not unheard of for the reported problem to get muddied or distorted when going through multiple people or channels before you first hear of it.

People often rephrase things when dictating what someone else previously said, so it’s quite possible for the original complaint to turn into something completely different as it passes through different people:

“The Amazon website tends to lock up my web browser whenever I add items into my Cart.” Mary, Sales Department.
“Helpdesk? Mary’s internet isn’t working when she’s online shopping.” CASE STUDY This Wisconsin manufacturer needed to modernize its IT infrastructure to support rapid business growth. Discover what they did Mary’s Boss
“Please help Mary so she can browse shopping sites. I think the internet filter is probably blocking that category.” John, creating Helpdesk ticket

We’ve all encountered these types of scenarios in the past and they can be really frustrating, even more so when the issues are much more important than whether a single employee is capable of adding items to their Amazon shopping cart.

The point here being,  don’t take what’s being told to you for granted . Spend the time necessary to verify that what is being reported to you is actually what’s occurring and the original reason the issue was raised in the first place. Furthermore, taking the time to speak with the source, in this case, Mary, allows you to ask important follow-up questions that can further aid in diagnosing the problem as its being reported.

2. Who is experiencing the problem?

Without knowledge of who is experiencing the problem, your ability to focus your troubleshooting efforts into a precise area will be diminished and you might wind up going off in a direction that’s not even necessary or even remotely related to the source of the problem. One of the questions that should be asked is, who exactly is experiencing the problem?

Is it (for example):

  • A single user
  • A group/department of users
  • The entire remote branch office location
  • The entire main office location –and- remote branch offices

Every organization is different as it relates to the “Who”, but there are stark differences in the following scenario and what could be the underlying issue relating to the company’s IP Phones when the IT professional called in to solve the problem has a clearer understanding of “Who” is actually affected:

Problem solving

Single User

  • Jerry’s IP phone isn’t working
  • This is likely an issue with Jerry’s phone specifically

problem solving information system

A group/dept. of users

  • The entire 2nd floor is having problems with IP phones
  • This might be an issue specific to a network switch/VLAN on the 2nd floor

problem solving information system

Remote/branch office

  • All users in the remote/branch office are having problems with IP phones
  • This might be an issue specific to the VPN connection between offices

problem solving information system

Main and remote offices

  • All users in the main and remote offices are having problems with IP phones
  • This might be an issue specific to the core switch or IP Phone System itself

The point here is, when the IT professional starts to  understand “Who” is really affected , they can eliminate having to navigate down unnecessary paths while troubleshooting and can instead work towards narrowing down their troubleshooting efforts to a more specific and concise area. In the case of the single user above, why waste time troubleshooting the VPN tunnel when only Jerry is affected by the issue? This is why  knowing the “Who” is extremely important.

Here’s another example of something an IT Professional or Wireless Engineer hears from time to time.   “Help!  Wireless is completely down in the entire building.  Everyone is reporting problems” .   In these situations, do yourself a favor and pay special attention to words or phrases such as “entire”, “everyone”, and “completely down” when problems are reported.  These “all-inclusive” phraseologies tend to exaggerate what’s really happening and have the potential to lead you astray.

It’s not uncommon that while investigating the problem, the IT Professional or Wireless Engineers quickly learns that the “entire” building, or “everyone”, or that the wireless network being “completely down” (which, for example, in a school, might affect 3,000+ users) turns out to be a single wireless Access Point being down in one small office that is affecting 5 actual users (not, 3,000+ users as “everyone” seems to imply).

Bear in mind,  problems can sometimes be overblown and overstated , especially when a user, or group of users, is regularly frustrated with or intimated by technology (any IT professional has likely experienced those high-maintenance users that cry wolf over just about anything!).

Problem solving process - lightbulb

3. When did the problem start?

Knowing when the problem actually started (with attention to finite details such as the exact day and exact time) can often provide a better understanding of the problem and help trigger more definitive ideas and potential solutions relating to the underlying root cause that a given IT professional is expected to solve. Imagine being brought into a new customer to resolve critical problems with their Internet Services and being told,

“The internet pipe is a problem. People are randomly seeing spotty performance and oddball issues whenever web surfing and we don’t know why.”

Now, a less-experienced IT professional might just start diving headfirst into firewall logs, bandwidth monitoring, opening up a trouble-ticket directly with the ISP and trying to figure out what is going on, but someone with more experience will first pause to ask additional questions , wanting more specifics as to “When” the problem started happening.

  • Has this ALWAYS been a problem?
  • WHEN were these random internet browsing issues first reported?

For a problem solving process you need to know when the problem started.

Certainly looking back into firewall logs and bandwidth utilization metrics over the last 2 week period makes sense knowing the issue presented itself within the last 10 days, but it hardly warrants spending much time at all looking back at logs and bandwidth utilization metrics from 3+ months ago. That being said, once again, try to VERIFY the information being told to you . Perhaps the person giving you the answer vaguely remembers that it was 10 days ago, but in truth, it’s only been 3 days!

In this particular situation where the internet is being reported as sporadic, it’s altogether possible that roughly 11 days ago, another on-site computer technician decided to enable the UTM (Unified Threat Management) functionality within their firewall to allow for additional Antivirus inspection, IDS (Intrusion Detection Services), Geo-IP Filtering, and a plethora of other goodies typically included in UTM feature-sets.

Unfortunately, as a direct result, the firewall’s processors/CPUs have become overloaded and cannot move traffic through it quickly enough to keep up with the additional processing demands required when the firewall’s UTM feature-set was enabled.

4. Is the problem intermittent or constant?

Another key element to an effective problem solving process is finding out if the reported issue is occurring constantly or whether it’s only occurring intermittently? Problems that are constant, or fixed , are generally (though not always) easier to troubleshoot . Whereas problems that are intermittent and seemingly random, are generally more difficult to troubleshoot.

How many times have we as IT professionals been called in to troubleshoot a problem, only to find that upon our arrival, the issue suddenly doesn’t seem to exist anymore yet no one did anything specific to actually resolve the problem!? Those situations can be really frustrating, not only for the IT professional but for the end-user as well because the likelihood of the issue reappearing is rather high (and most likely reappears just a few short moments after the IT professional has left!)

The best thing to do in these scenarios is document WHEN the issue occurred and how LONG it lasted before it miraculously “fixed itself”, so the next time that same problem is reported, you might be able to piece together some crude and basic assumptions or theories based on WHEN it happened previously and how LONG it lasted each time.

Wireless chaos only at lunchtime?!

Problem solving techniques identity odd wireless issues

5. What changed recently?

This is one question that is unfortunately not asked often enough, is just plain overlooked, or in other cases is just completely disregarded (shame on you if you fall into that category!). Technology is a very touchy and hypersensitive beast , and more often than not, it doesn’t take too kindly to introducing changes. Even the changes that are supposed to solve and prevent other known problems, often result in the introduction of new and unexpected problems.

It’s not unheard of that sometimes even routine maintenance on equipment can cause problems .

Take for example, updating firmware on a network switch . This should be a relatively trouble-free routine operation, but suddenly users are reporting that they’re occasionally having problems logging into their desktops. It’s happening to more than one user, in fact, it’s being reported sporadically throughout the building early in the morning hours when most employees arrive for the start of their shift.

“What Changed” recently? Over the weekend you decided to update the firmware on your edge switches and now the port security that was set up on the switches using AAA authentication with Radius, isn’t behaving as expected. Unfortunately, it looks like the new firmware update might have introduced a random bug! What’s the solution? Back rev your switches , or look for ever newer firmware code that might resolve the problem.

Man looking at purple screen of death

You haven’t changed anything with the VMWare software itself, still running on the same trusted vSphere 6.0 Update 1 release that has been rock solid and problem-free in your environment. So “What Changed” recently? Wait a minute, come to think of it, the host server that is regularly crashing recently had an additional 64GB of memory added to it one week ago! Might be worth removing that extra 64GB of memory and seeing if the problem goes away. Certainly wouldn’t be the first time new or additional hardware was the result of the underlying issue .

6. Can the problem be recreated?

Another helpful step for effective problem solving is trying to recreate the actual problem. As discussed before, reported problems can either be of a constant or intermittent nature. Taking the time to re-create the problem can be beneficial and especially helpful in cases where you might need to break out tools such as Wireshark to capture packets and network traffic for future analysis and evaluation. IT professionals have to make use of such tools in more complex technical support issues especially when the flow of network traffic is in question or when there’s a need to examine whether the traffic is making it from the source to destination devices.

If possible, take advantage of any sandbox or test environments that are available. Having these environments gives you the flexibility to recreate the issue and effectively “break” things on purpose, without putting your production network or systems at risk and without interrupting services that end-users are relying on during standard business hours.

Recreating the problem is also advantageous in situations where the IT professional may need to involve 3rd party technical support from a vendor as well. Often, these vendors will have the means to establish remote sessions to take control of your desktop (or the machine in which you’ve successfully recreated the problem on), which gives the vendor the ability to actually see the issue while it’s occurring to further help diagnose what is happening.

7. Are benchmarks and logs available?

Having some kind of benchmarking tool available to track and record network and server performance is beyond measure in terms of its overall value when helping an IT professional track down challenging technical issues. One of the key areas worth checking when problems are being reported is looking at the actual METRICS over a historical period of time. Metrics can prove to be invaluable when trying to figure out: Whether the problem reported actually exists or is a false positive

Maybe you’ve been in a situation where someone reports, “The file server is really slow today!” Without historical benchmarks available, taking a look at the current server performance may not yield any fruitful results because the CPU, disk, network, and memory counters all SEEM to be operating at a reasonable level, but based on and compared to what exactly?

With historical benchmarks available, there is a foundation to actually compare today’s performance on the server as it relates to the CPU, Disk, Network, and Memory (and any other metric/counter you want) VERSUS what the server has been utilizing for the past days, weeks, or months prior.

What historical benchmarks might help you discover is, that according to the historical data, perhaps there is absolutely NO difference in the server performance today versus previous days, weeks, or months? The complaint of “The file server is really slow today” turns out to be a false positive in that case, proven by the metrics an historical benchmarks. Finding the real cause and resolution to the user’s complaint is going to require you to start looking into other areas aside from the server itself. Perhaps it’s a client-side issue or networking issue.

Having benchmarks available is crucial in taking out illogical guess-work and assumptions, and replacing them with hard evidence and facts to back up your problem solving process. There are countless software options available that will give you the data you need for metrics, though we often recommend using PRTG from Paessler, which is a wonderful utility for acquiring benchmarks on your network and servers.

Logs are another important thing to consider during the troubleshooting process. Going back into log history can give a stumped IT Professional some additional clues as to what is going on, especially in cases where the question of “ When did the problem start?” remains unanswered.

Having network devices (switches, routers, firewalls, wireless, etc.) sending their log information to a dedicated syslog server (for example, Kiwi Syslog Server from SolarWinds) gives someone the opportunity to search for entries related to particular devices (by IP address) for specific warning messages or error messages.

Syslog messages and the historical information gathered here can sometimes help point the IT Professional in the right direction, not to mention, the logs themselves can be extremely valuable to the vendor of the product as well when they are involved in troubleshooting what is happening.

8. I’m officially stuck – now what?

Alright, so you find yourself in one of those rather unpleasant circumstances where you’ve asked all the right questions, dug into your resourceful bag of tricks, and find that you’ve exhausted all your technical knowledge and ability to track down the source of the problem. What do you do now? The first step is DON’T PANIC . Effective problem solving is, more often than not, substantially reduced when the IT professional is stressed out and under pressure (although in some rare cases, people tend to flourish under these “trial by fire” scenarios). Keeping panic at bay will help a person to remain calm, focused, and continue to allow them to logically walk through the problem solving process.

This is however, easier said than done, when there are countless emails and phone calls coming in demanding an update as to when the source of the problem will be fixed (and let’s not forget, potentially angry bosses that might be clueless as to why the problem is taking more than 10 minutes to resolve!).

External help can shorten your problem solving process

The second step is just that, call in the cavalry! Let’s face it, there will always be instances where even the most seasoned IT professional needs assistance from peers, vendors or other resources . None of us are capable of knowing absolutely everything. When you find yourself struggling, don’t be afraid to reach out for help! What does that mean?

  • Open a case with, for example, Cisco TAC support
  • Open a case with, for example, Microsoft PSS support
  • Involve a co-worker, professional colleague, or peer
  • Partner with a local and trusted IT vendor
  • Google can be your friend (be careful of “quick-fix” solutions you find)
  • Look into vendor specific forums (most large-vendors have them)

Problem solving process - lightbulb

The problem solving process in summary

Be sure to give yourself the absolute best chance to combat those dreaded technical support issues. The next time someone contacts you and yells in a panic, “Email is broken!” understand that you can more quickly deduct what is actually going on and help minimize the amount of time necessary to resolve the problem by simply asking the right questions :

  • What is the Actual Problem?
  • Who is Experiencing the Problem?
  • When did the Problem Start?
  • Is the Problem Intermittent or Constant?
  • What Recently Changed?
  • Can the Problem be Recreated?
  • Are Benchmarks and Logs Available?
  • I’m Officially Stuck – Now What?

Keep in mind, however, that not only do you need answers to those questions, but you need answers that are accurate .

As stated earlier, this means the IT professional may need to take the necessary time to validate the answers being provided to them. Inaccurate answers and misinformed facts will send you down the wrong troubleshooting path and unnecessarily prolong the amount of time necessary to resolve complex technical support issues. So get your facts straight!

Having the answers to these questions will allow you to immediately narrow down the scope of the problem and the potential areas at fault, conduct tests, formulate conclusions, and resolve problems even faster than you may have anticipated.

You should also read:

5 practical steps to avoid a cyber attack

Understanding the e-rate process [download primer].

Jesse Rink

Jesse is the owner of Source One Technology and has been providing IT consulting services to Enterprises , SMBs , schools , and nonprofits in Waukesha , Milwaukee , Dane , Washington , Jefferson , Ozaukee , Kenosha , Racine counties and across Wisconsin for over 18 years.

Is application virtualization now a necessity?

Microsoft deployment toolkit and windows deployment services, 2 thoughts on “an effective problem solving process for it professionals”.

Found your article very interesting. I can definitely identify with all of the points you made, especially troubleshooting. Either you can or cant troubleshoot and think logically through an issue or problem. You are right in mentioning that its something you really cannot teach. One other thing that helps with a logically stepping through the process is documentation. There should always be a repository where network diagrams, server builds, OS versions etc., are kept. I understand that a lot of times these documents cannot be relied upon due to being out of date and it seems most people scoff at the idea of keeping good documentation. But I believe it to be important to help with any troubleshooting. You also mentioned the question, Did anything change? or What changed? A big issue when attempting to troubleshoot. Every place I have worked at, always used a change management process that documented every single change, no matter how small. Of course these places had to by law (SOX audits) because they were publicly traded companies. Just wanted to say, good article!

That is a great article with some excellent questions. Working with students and teachers, I’d throw in a few extra suggestions.

1. What is a reasonable timeline for solving the problem? Often times a lack of communication to this question leads to frustration and long term mistrust regarding the reliability of technology. Asking what needs to be done from the end user’s perspective, and knowing their timeline for completion is helpful. Giving them a reasonable amount of time in which they can expect the issue to be resolved sets everybody up for success around reasonable expectations.

2. Suggest potential work-arounds when necessary — Standing in front of a group of adults and attempting to present when the technology is not working is overwhelming and frustrating. The same tech failure when you are working with a group of students and you start to lose their attention — it’s a nightmare! Knowing what tools your district provides for staff and their general purpose may allow you to offer some potential work-around ideas until the problem is resolved. There is not a fix for everything, but when you can suggest a reasonable alternative in the moment, you offer more than just tech support — you offer customer service.

Comments are closed.

Source One Technology, Inc.

375 Bishops Way, Ste 223 Brookfield, WI 53005

P: (262) 432-9000

problem solving information system

Solutions & Services

Business email

Cloud migration

Data backup

IT assessments

Networking support

Virtualization

Virtual CIO

Business - enterprise

Business - small and medium

Banking and finance

Churches and non-profits

Government and municipalities

Manufacturing

Schools and districts

Testimonials and case studies

Read our blog

problem solving information system

Copyright 2024 Source One Technology, Inc All rights reserved | Privacy Policy . | Marketing by Riabro .

problem solving information system

  • Contact sales

Start free trial

7 Steps for Effective Problem Management in IT

ProjectManager

Information technology (IT) is a broad field that encompasses anything related to computer technology. That can include networking, hardware, software, the internet and the people that work with these things. Teams that work in IT are there to support these technologies and the people who use them. However, teams that work in IT management are not waiting around for systems to go down before they respond.

IT project management teams are tasked with preventing problems from occurring—and certainly from regularly occurring. This is called problem management, which has been detailed into best practices within the services management framework ITIL, or the information technology infrastructure library.

What Is Problem Management?

Problem management is the methodology related to responding to IT problems, especially those that are recurring, to make sure that they are resolved and don’t return.

ProjectManager's kanban board

This involves the quick detection of an issue and then providing a viable solution, or at least some workaround to reduce the impact on the organization and stop the problem from reappearing.

ITIL & Problem Management

One of the aspects of problem management is pinpointing the issue in the IT infrastructure that is the root cause of the problem, which is where the ITIL comes in. ITIL was first started in 2000 and is presently the most popular IT service management framework for best practices. It is used as a protocol when aligning IT services with business needs.

ITIL follows a process that starts with identifying the problem, which has caused one or more incidents but is not known why at the time. This becomes defined as an error when it’s identified as a design flaw or malfunction. It becomes a known error as a root cause if found and a workaround is documented. The root cause is the underlying reason for the incident.

Types of Problem Management & Related Processes

Problem management can be broken down into two distinct groups. There is reactive problem management, which is reacting to a problem when it occurs. The other is proactive problem management. This is the act of identifying and solving an issue before it results in an incident or problem in the IT system.

Problem management falls under the larger umbrella of ITIL processes. ITIL service operation processes include problem management, incident management, request fulfillment, event management and access management.

Incident Management vs. Problem Management

“Incident” and “problem” might seem like similar words, but in the realm of problem management, they have different meanings. According to ITIL, an incident refers to “an unplanned interruption to a service, or the failure of a component of a service that hasn’t yet impacted service.”

A problem, on the other hand, is made up of more than one related incident, or those that have common issues. Therefore, a problem is more severe than an incident. It requires more follow-up. A problem is not an incident, but an incident can create a problem if it’s recurring.

Managing an incident means fixing it and restoring the system as fast as possible. A problem is resolved by discovering its root cause to make sure that new incidents don’t occur.

Therefore, incident management is getting the system back in order quickly. Problem management is working to find and resolve the underlying cause of the error that has resulted in several incidents.

Problem Management Team

There are roles and responsibilities in problem management to make sure that the process, which is outlined below, is carried out properly. There is a problem manager, who is the owner of the problem management process and is a liaison for all team members, manages the known error database, closes problems and coordinates review.

The problem-solving team can be an internal technical support team or a group of external suppliers or vendors. Sometimes, if the problem demands special attention, the problem manager will assemble a special team , with the expertise needed to solve the problem, dedicated to that specific problem and its resolution.

The Problem Management Process

Now that we know what problem management is, how does it work as a successful process? First of all, it’s not just about problem-solving. At the highest level, yes, problem management resolves problems. But it’s more about the entire life cycle of that problem.

The process for problem management then is a structured way to manage problems in IT projects after they are first reported by users or service desk technicians. The problem management process can be broken down into these seven steps.

1. Detection

To resolve a problem, first, you have to identify it. This can be done in several ways. One is that there’s a problem that is reported or one that has undergone an ongoing analysis. There are also event management tools that can automatically detect a problem, or you might get a notification from a supplier.

A problem can be defined as when the cause of the problem report remains uncertain. For example, an incident can occur and get resolved but then reoccur. The underlying cause for this recurrence is unclear. Sometimes a problem is a known problem, one that has occurred before and is part of an existing record.

In the last example, when a problem is already recorded once and has happened again, this historical data is known because it had been logged. This is a crucial step in any problem management life cycle process. The log must have all pertinent details, such as the date and time of the problem, any user information, equipment details and a description.

Once the problem has been logged, then it must be categorized to better assign and monitor, as well as given a priority. This helps to determine how important the problem is and when it should be addressed by the team.

3. Diagnosis

Once the problem is identified and logged, then comes the search for its root cause. This can be done by investigating the known error database to find other problems that match the one you’re trying to diagnose and see if there are any recorded resolutions.

4. Workaround

If it’s possible to temporarily fix the problem with a workaround, then this might be the best and fastest course of action. It is not a permanent change and should not be used in exchange for resolving the issue, but it can set the technological ship back on course and reduce downtime and disruption until a permanent change resolution is available. Just be careful not to accrue too much technical debt .

5. Known Error Record

After you’ve identified, logged and diagnosed the problem, it’s important to collect that information in a known error record. This is where you can go back and look up problems when others arise in your IT and see if it’s one you’ve already handled.

This makes resolving the problems faster and easier, resulting in less downtime and disruption.

6. Resolution

When you have a resolution for the problem, implement it with standard change procedure and test the resolution to make sure it in fact is working. Sometimes this process is carried out through a request for change document, which then must be approved before being implemented.

Once resolved and tested, the problem can be closed. The final bit of paperwork is usually completed by the service desk technician, who makes sure that the details are accurate for future reference.

Why Is Problem Management Important?

Successful problem management results in less downtime and fewer disruptions in the business. It also improves service availability and quality. Problem management helps companies to reduce the time they spend having to resolve problems and also the number of problems that occur.

This all leads to an increase in productivity and reduces costs. The final step in the problem management journey is that it leads to improved customer satisfaction.

Technology is changing all the time, faster and faster with each passing quarter, and problem management is one way to mitigate the chaos often associated with these changes. Problem management keeps services running and increases quality.

ProjectManager Helps Problem Management

Problems need solutions and solutions come from people with the right tools. ProjectManager is an online project management software that organizes projects, including when those projects are dealing with IT problems.

Log Problems & Build Projects

When a problem has been identified by the help desk or a user, it becomes more than just an IT problem. It is now a project to resolve it. One way ProjectManager helps is by structuring its resolution in a kanban board .

By logging the identified problem in ProjectManager you can now archive the work to resolve it. This now becomes a piece of historical data to reference if and when the problem shows up again. Once the problem has been diagnosed, it can go on a kanban card and move through the kanban as it is being worked on and completed. Adding tabs can list them as bugs, so they’re easy to find. You can even prioritize them.

ProjectManager's list view with a task overlay

Track Progress

Managers are going to want to progress reports. Kanban boards are transparent, so they can see the work getting done, but for more details project reports are fast and thorough. The real-time dashboard can even give managers a high-level overview.

ProjectManager’s dashboard view, which shows six key metrics on a project

Next time your IT department is struggling with resolving a problem, give them ProjectManager. It has the tools IT professionals want.

ProjectManager is a cloud-based project management software that can be used as a problem management tool. Our software can collect and categorize your problem as a project, so the problem management process can be controlled. You can track the resolution of your problem in real time, assign team members to resolve the problem and give them a platform to collaborate and work more effectively. Solve your problems by trying ProjectManager free with this 30-day trial offer.

Click here to browse ProjectManager's free templates

Deliver your projects on time and under budget

Start planning your projects.

MBA Knowledge Base

Business • Management • Technology

Home » Management Information Systems » Systems Approach to Problem Solving

Systems Approach to Problem Solving

The systems approach to problem solving used a systems orientation to define problems and opportunities and develop solutions. Studying a problem and formulating a solution involve the following interrelated activities:

  • Recognize and define a problem or opportunity using systems thinking.
  • Develop and evaluate alternative system solutions.
  • Select the system solution that best meets your requirements.
  • Design the selected system solution.
  • Implement and evaluate the success of the designed system.

1.  Defining Problems and Opportunities

Problems and opportunities are identified in the first step of the systems approach. A problem can be defined as a basic condition that is causing undesirable results. An opportunity is a basic condition that presents the potential for desirable results. Symptoms must be separated from problems. Symptoms are merely signals of an underlying cause or problem.

Symptom: Sales of a company’s products are declining. Problem: Sales persons are losing orders because they cannot get current information on product prices and availability. Opportunity: We could increase sales significantly if sales persons could receive instant responses to requests for price quotations and product availability.

2. Systems Thinking

Systems thinking is to try to find systems, subsystems, and components of systems in any situation your are studying. This viewpoint ensures that important factors and their interrelationships are considered. This is also known as using a systems context, or having a systemic view of a situation. I example, the business organization or business process in which a problem or opportunity arises could be viewed as a system of input, processing, output, feedback, and control components. Then to understand a problem and save it, you would determine if these basic system functions are being properly performed.

The sales function of a business can be viewed as a system. You could then ask: Is poor sales performance (output) caused by inadequate selling effort (input), out-of-date sales procedures (processing), incorrect sales information (feedback), or inadequate sales management (control)? Figure  illustrates this concept.

3. Developing Alternate Solutions

There are usually several different ways to solve any problem or pursue any opportunity. Jumping immediately from problem definition to a single solution is not a good idea. It limits your options and robs you of the chance to consider the advantages and disadvantages of several alternatives. You also lose the chance to combine the best points of several alternative solutions.

Where do alternative solutions come from/ experience is good source. The solutions that have worked, or at least been considered in the past, should be considered again. Another good source of solutions is the advice of others, including the recommendations of consultants and the suggestions of expert systems. You should also use your intuition and ingenuity to come up with a number of creative solutions. These could include what you think is an ideal solution. The, more realistic alternatives that recognize the limited financial, personnel, and other resources of most organizations could be developed. Also, decision support software packages can be used to develop and manipulate financial, marketing, and other business operations. This simulation process can help you generate a variety of alternative solutions. Finally, don’t forget that “doing nothing” about a problem or opportunity is a legitimate solution, with its own advantages and disadvantages.

4. Evaluating Alternate Solutions

Once alternative solutions have been developed, they must be evaluated so that the best solution can be identified. The goal of evaluation is to determine how well each alternative solution meets your business and personal requirements. These requirements are key characteristics and capabilities that you feed are necessary for your personal or business success.

If you were the sales manager of a company, you might develop very specific requirements for solving the sales-related information problems of your salespeople. You would probably insist that any computer-based solution for your sales force be very reliable and easy to use. You might also require that any proposed solution have low start-up costs, or have minimal operating costs compared to present sales processing methods.

Then you would develop evaluation criteria and determine how well each alternative solution meets these criteria. The criteria you develop will reflect how you previously defined business and personal requirements. For example, you will probably develop criteria for such factors as start-up costs, operating costs, ease of use, and reliability. Criteria may be ranked or weighted, based on their importance in meeting your requirements.

5. Selecting the Best Solution

Once all alternative solutions have been evaluated, you can being the process of selecting the best solution. Alternative solutions can be compared to each other because they have been evaluated using the same criteria.

Alternatives with a low accuracy evaluation (an accuracy score less than 10), or a low overall evaluation (an overall score less than 70) should be rejected. Therefore, alternative B for sales data entry is rejected, and alternative A, the use of laptop computers by sales reps, is selected.

6.  Desingning and Implementing Solution

Once a solution has been selected, it must be designed and implemented. You may have to depend on other business end users technical staff   to help you develop design specifications and an implementation plan. Typically, design specifications might describe the detailed characteristics and capabilities of the people, hardware, software, and data resources and information system activities needed by a new system. An implementation plan specifies the resources, activities, and timing needed for proper implementation. For example, the following items might be included in the design specifications and implementation plan for a computer-based sales support system:

  • Types and sources of computer hardware, and software to be acquired for the sales reps.
  • Operating procedures for the new sales support system.
  • Training of sales reps and other personnel.
  • Conversion procedures and timetable for final implementation.

7.  Post Implementation Review

The final step of the systems approach recognizes that an implemented solution can fail to solve the problem for which it was developed. The real world has a way of confounding even the most well-designed solutions. Therefore, the results of implementing a solution should be monitored and evaluated. This is called a postimple-implemented. The focus of this step is to determine if the implemented solution has indeed helped the firm and selected subsystems meet their system objectives. If not, the systems approach assumes you will cycle back to a previous step and make another attempt to find a workable solution.

Related Posts:

  • Elements of a System
  • IT Tools and Technologies for Managers
  • Conversion/Installation Modes of Information Systems
  • Marketing Information Systems
  • Data storage in Management Information Systems (MIS)
  • ERP Planning
  • Strategic Information Systems
  • Personnel Action Systems (PAS)
  • Feasibility Analysis in System Development Process
  • Integration of Blockchain and Enterprise Resource Planning Systems

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Business growth

Business tips

What is information systems? Definition, uses, and examples

Hero image with a person with arrows all around them (skills)

I'll admit it—"information systems" might be one of the vaguest terms I've ever heard. What first came to mind was huge quantities of data, and after doing some research, I found that my guess wasn't too far off. Like many vague terms in the business world, it encompasses a lot of mechanisms that contribute to organizational success.

So what is information systems? In this guide, I'll unpack what goes into this essential set of tools and walk through how to build your own information system strategy.

Table of contents:

What is information systems?

Information systems examples, 5 components of information systems, how to build an information system strategy, why your organization needs information systems.

Information systems encompasses the tools that organizations use to collect, manage, and analyze data. This data guides decision-making to improve efficiency and profitability.

Every decision an organization makes should be data-driven, so the uses of information systems are practically limitless—human resource management, financial account management, customer outreach and advertising, competitive landscape analysis, you name it.

Information systems can improve nearly any business operation, but here are a few valuable ways you can put them to work.

Expert systems: AI is becoming more advanced every day, and it's leveraged in information systems to simulate human problem-solving (think Siri!). Expert systems use knowledge that would otherwise need to be provided by a subject matter expert to tackle problems and make decisions. In a business context, it can solve accounting problems or identify malware.

Office automation systems: Automation saves countless hours that would otherwise be spent doing simple tasks. Office automation systems combine computer and communication technology with human resources to enact more efficient procedures. For example, a COO may schedule monthly company-wide email updates that include AI-generated reports on the company's status.

Process control systems: If you're looking for a way to apply information systems to product manufacturing, process control systems are your solution. They rely on inputs from sensors to generate specific outputs and are frequently used to ensure a product meets specific criteria. A simple example is a thermostat—when the temperature dips below a certain level, the heat turns on. If you produce a physical product that's regularly criticized by customers, you may want to tweak your process controls.

Image showing the five components of information systems—hardware, software, data sources, telecommunications, and human expertise.

So what goes into information systems? Nearly everything you need for a functional modern office: hardware, software, data, communication, and people. Virtually every information system includes these components in some capacity.

Computers are the physical hardware that make up information systems. Nowadays, this doesn't just mean your cubicle's desktop or laptop computer—we have computers at our fingertips much of the time we aren't typing away at our keyboards. Smartphones, tablets, and even smart watches all have the power to collect , store, access, and manage huge amounts of data.

You can break hardware down by its components as well: hard drives for storage, microprocessors for processing power, graphics cards for generating graphics, monitors for displaying them, and so on.

Computers are just shiny black mirrors without the programs running behind the scenes telling the hardware what to do. Software can be broken down into two types:

System software , which allows you to manage the computer's files and overall interface (think operating systems like Windows 10).

Application software , the programs that take care of specific tasks (think Google Sheets and Microsoft Outlook). System software creates a starting point from which application software can build.

Software can either be open-source or closed-source. Open-source software invites collaboration—users can modify its code to change how it operates. Closed-source software is proprietary, meaning the owner restricts the user's ability to modify it. 

Data sources

Data puts the "information" in information systems. Databases and data warehouses store the qualitative and quantitative information (data) that users and software then retrieve, analyze, and manipulate.

Databases hold the information that the user regularly retrieves to complete essential operations, like saving a file's contents and accessing them. Data warehouses, on the other hand, store data collected from multiple sources over time to be analyzed and used to inform decisions. For example, a data warehouse could include customer data consolidated from your point-of-sale system, mailing list, and cookies.

Telecommunications

Telecommunications is how computers share information with each other. The first thing that may come to mind is the internet, and you're correct. But telecommunications can be broken down further.

Some connections are physical: coaxial and fiber-optic cables are physical wires used by telephone, internet, and cable providers to carry data. Others are wireless: think networks like local area networks (LANs) and wide area networks (WANs). Microwaves and radio waves are also invisible channels that transmit data across devices.

Telecommunications makes it possible to access data via the cloud—without these systems in place, all data would have to be stored on one device.

Human resources

Automation is replacing a lot of tedious tasks with robots, but we haven't quite reached a Westworld-esque android takeover. Human experts capable of understanding and manipulating data are essential to any information systems strategy. 

For example, business analysts use data to develop strategies for improving a business's operations —think efficiency and resource allocation. Likewise, information security analysts look out for security vulnerabilities to reduce the likelihood of cyberattacks.

Of course, analysts don't have to do all of this work by hand—they can rely on other technologies like business intelligence to assist with the process of using data to make concrete strategic decisions.

Image showing the steps for building an information system strategy.

Curating a cohesive information system strategy can't be done with the click of a mouse—it takes time and effort.

1. Determine your business's objectives and information needs

You should build your strategy around your goals. When in doubt, turn to your KPIs. Which benchmarks are you failing to hit? For example, maybe you actively market yourself as a customer-friendly solution, but a survey shows customer satisfaction falling 20% below your benchmark. 

Once you identify an objective like this, evaluate what information you need. Have you been collecting customer data in a database or data warehouse? If so, do you have enough to develop a customer retention and satisfaction strategy? If not, it's time to start from scratch and begin actively collecting customer data.

2. Plan how you'll improve your existing system

There's a good chance you already have some information systems infrastructure in place—you just need to refine it. For example, you may have plenty of customer data in a data warehouse but lack customer relationship management (CRM) software.

This presents an opportunity to select and customize CRM software based on existing data. When deciding how to improve your system, remember to always keep budget and other resources in mind. Not all plans are affordable.

3. Design and implement your new system

During this phase, you'll create a list of specifications and requirements that your system will have to meet, which will vary depending on your company's needs. For example, you may consider the following questions:

How will you collect, consolidate, and access data?

What software do you need, and how will you customize it?

Should hardware be updated to accommodate new software?

How will your applications integrate?

What parts of your system will be automated vs. managed by human resources?

Who will head your information systems? The CIO, CTO, or another role?

Your team should then build the functions that will bring your system to life. Once you've designed everything, it's time to purchase and install your new mechanisms. This process can be expensive and time-consuming—after all, you're supplanting your entire organization's status quo. Be sure to test that the system is functioning as planned before rolling it out across your organization.

As you implement your updated system, remember to document every change and keep these records secure. Your developers should also spend plenty of time learning about the needs of the users who will be using the system most. Otherwise, their time may be wasted creating functions that aren't helpful.

Information systems is the backbone of data-driven decision-making . It allows organizations to make sense of huge quantities of data and use that information to identify and correct procedural issues. Without it, your organization would remain trapped in the same old inefficiencies that hold it back.

For example, by improving its information systems strategy, an organization can centralize its information resources, minimizing confusion and turning a scattered office into a well-oiled machine. This makes both your employees and your customers happier.

Related reading:

Human resource information systems explained

What is infrastructure management?

Using advanced automation to improve business systems

9 ways to apply process optimization to your business

What is systems management?

Get productivity tips delivered straight to your inbox

We’ll email you 1-3 times per week—and never share your information.

Luke Strauss picture

Luke Strauss

Based in sunny San Diego, Luke is a digital marketer with 3+ years of experience developing and executing content strategy for eCommerce startups and SaaS enterprises alike—Airtable, Zoom, and yes, Zapier—to name a few. When he isn’t diving into a keyword research rabbit hole, you can find him at a music festival, thrifting, or spending time with his friends and family.

  • Data & analytics
  • Software & web development

Related articles

A hero image representing automation with a lightning bolt

How to choose the best automation software

Hero image for AI in customer service with a globe in the shape of text bubble

AI in customer service: 11 ways to automate support

AI in customer service: 11 ways to automate...

Hero image of a person at a desk writing

How to write a letter of introduction for your freelance business

How to write a letter of introduction for...

Hero image with an icon representing a sales pipeline

How to create a sales plan (and 3 templates that do it for you)

How to create a sales plan (and 3 templates...

Improve your productivity automatically. Use Zapier to get your apps working together.

A Zap with the trigger 'When I get a new lead from Facebook,' and the action 'Notify my team in Slack'

More From Forbes

Leveraging systems models: a strategic advantage for it professionals.

Forbes Coaches Council

  • Share to Facebook
  • Share to Twitter
  • Share to Linkedin

Thomas Lim is the Vice-Dean of Centre for Systems Leadership at SIM Academy. He is an AI+Web3 practitioner & author of Think.Coach.Thrive!

IT professionals increasingly need to navigate projects arising from greater business complexity. The integration of systems models with established methodologies, like design thinking, agile and lean, presents a unique opportunity for IT experts to enhance their capacity and expertise. This systemic integration not only enriches their problem-solving tool kits but also ensures the delivery of innovative, sustainable solutions that align with the strategic objectives of their organizations.

The landscape of IT projects has expanded beyond straightforward software development to include complex ecosystems involving artificial intelligence (AI), cloud computing, big data and more. This complexity necessitates a holistic view of project management and solution development, where understanding interdependencies and emergent behaviors becomes crucial. Systems models, with their focus on the interrelations within and among systems, offer a comprehensive framework for analyzing and addressing these complexities.

Enhancing Design Thinking With Systems Thinking

Within the Design Thinking phases, there are opportunities to embed systems thinking models. For example, during the Ideate phase, using causal loops would help clarify the Theory of Success.

Agile methodologies emphasize flexibility, rapid iteration and stakeholder collaboration. Integrating systems dynamics into agile practices allows IT professionals to model and simulate the behaviors of complex systems over time. This predictive capability can inform sprint planning, risk management and the prioritization of features based on their potential impact on the system. By understanding the feedback loops and causal relationships that drive system behavior, IT teams can anticipate challenges and opportunities, leading to more informed decision-making and effective agile implementation.

Apple iPhone 16 Unique All New Design Promised In New Report

The best romantic comedy of the last year just hit netflix, the world s best beers according to the 2024 world beer cup, diagnosing with the levels of perspective model.

The Levels of Perspective Systems Model categorizes viewpoints from which a system can be analyzed, ranging from concrete events to deep-rooted structures and mental models. This hierarchical framework includes the Events level, Patterns of Behavior level, Structural level and, sometimes, the Mental Models level. Each level offers a unique lens through which IT developers can understand and address complex challenges.

Enhancing Design Thinking

Design thinking emphasizes empathy, collaboration and iterative learning to solve problems creatively. By applying the Levels of Perspective Model, IT developers can deepen their empathetic understanding by recognizing not only the immediate needs (Events level) but also the underlying patterns and behaviors of users (Patterns of Behavior level). This approach allows developers to design solutions that are more closely aligned with users' evolving behaviors and preferences. Additionally, considering the Structural and Mental Models levels enable developers to identify and challenge assumptions about what users need or value, leading to more innovative and user-centric solutions.

Complementing Agile Methodologies

The Levels of Perspective Model can enhance agile practices by encouraging developers to look beyond the immediate backlog of tasks (Events level) and consider the broader patterns of team dynamics and project progress (Patterns of Behavior level). This wider perspective can help in anticipating challenges and opportunities for improvement.

Stacking Systemic Choices Using The Hierarchy Of Choices

The Hierarchy of Choices model offers a structured approach to decision-making that can greatly enhance the effectiveness of IT developers. By delineating decisions across five levels—fundamental, primary, secondary, tertiary and other choices—this model provides a comprehensive framework that aligns closely with design thinking and agile and lean methodologies, enhancing developers' capacity to deliver impactful, user-centered solutions efficiently.

Fundamental Choice: The Purpose Behind Existence

At the core of every IT project is the fundamental question: Why does this project exist? This aligns with the empathetic core of design thinking, which starts with understanding the user's needs and challenges.

Primary Choice: Defining Desired Outcomes

What results does the project aim to achieve? Identifying primary choices involves setting clear, measurable goals, a principle that resonates with the outcome-focused nature of agile methodologies. For developers, defining these outcomes provides a clear direction for the project, facilitating prioritization and helping to maintain focus on delivering value to the end-users.

Secondary Choice: Crafting The Strategy

Deciding on the strategy—how the project will achieve its goals—ties into lean thinking, which emphasizes value streams and waste elimination. For IT developers, understanding the chosen strategy informs the selection of technologies, architectural patterns and development practices that align with project goals. This strategic alignment ensures that resources are optimized and efforts are directed toward activities that directly contribute to the project's objectives.

Tertiary Choice: Selecting Tactics

Tactical choices concern the specific actions taken to implement the strategy. This is where agile practices shine, offering a flexible framework for iterative development, continuous integration and regular feedback loops. Developers, by making informed tactical decisions, can adapt to changes quickly, experiment with solutions and refine their approach based on real-time feedback, all while ensuring alignment with the overarching strategy.

Finally, the model includes a broad category for other choices, encompassing the operational decisions related to the what, where, how and when of project execution.

The Road Ahead

As IT professionals strive to navigate the complexities of modern projects, the integration of systems models with traditional methodologies like design thinking, agile and lean offers a powerful synergy. This systemic integration enables a holistic understanding of complex environments, fosters innovative problem-solving and supports the agile adaptation to change. By embracing these integrated approaches, IT professionals can elevate their expertise, deliver impactful solutions and achieve strategic alignment in their projects, ensuring their role as key drivers of digital transformation.

In conclusion, the relevance of systems models in the IT domain cannot be overstated. As we advance into a future where projects become increasingly complex and interconnected, the ability to integrate and apply these models alongside established IT methodologies will be a defining skill for IT professionals. This systemic integration not only enhances their capacity to address current challenges but also positions them to lead the way in shaping the digital landscapes of tomorrow.

Forbes Coaches Council is an invitation-only community for leading business and career coaches. Do I qualify?

Thomas Lim

  • Editorial Standards
  • Reprints & Permissions
  • Engineering & Technology
  • Industrial Engineering
  • Systems Engineering

Solving Business Problems with Information Systems

problem solving information system

Related documents

Chapter 10 Building Successful Information Systems

Add this document to collection(s)

You can add this document to your study collection(s)

Add this document to saved

You can add this document to your saved list

Suggest us how to improve StudyLib

(For complaints, use another form )

Input it if you want to receive answer

IMAGES

  1. Information Problem-Solving Instruction

    problem solving information system

  2. The 5 Steps of Problem Solving

    problem solving information system

  3. McKinsey 7-step problem-solving process

    problem solving information system

  4. 4 Step Problem Solving Process

    problem solving information system

  5. Definitive Guide to Problem Solving Techniques

    problem solving information system

  6. ️ Problem solving step. 5 Problem Solving Steps. 2019-01-14

    problem solving information system

VIDEO

  1. 2023 Movement Play of the Week

  2. Problem-Solving Operation 001

  3. Problem Solving System

  4. Problem-Solving Operation 002

  5. YOU ARE DESIGNED TO SOLVE PROBLEMS

  6. Problem-Solving Operation 003

COMMENTS

  1. 1.2 Problem Solving: The Most Important Skill in Information Systems

    The job placement statistics for IS graduates provide further evidence of the importance of problem-solving skills. According to a 2019 job index report sponsored by AIS and Temple University, the leading job categories for graduates include the following: 2. IT Consulting. Computer Systems Analyst. Data Analytics.

  2. What is Problem Solving? Steps, Process & Techniques

    Finding a suitable solution for issues can be accomplished by following the basic four-step problem-solving process and methodology outlined below. Step. Characteristics. 1. Define the problem. Differentiate fact from opinion. Specify underlying causes. Consult each faction involved for information. State the problem specifically.

  3. What is Problem Solving? An Introduction

    Problem solving, in the simplest terms, is the process of identifying a problem, analyzing it, and finding the most effective solution to overcome it. For software engineers, this process is deeply embedded in their daily workflow. It could be something as simple as figuring out why a piece of code isn't working as expected, or something as ...

  4. Taking a systems thinking approach to problem solving

    A systems thinking approach to problem solving recognizes the problem as part of a wider system and addresses the whole system in any solution rather than just the problem area. A popular way of applying a systems thinking lens is to examine the issue from multiple perspectives, zooming out from single and visible elements to the bigger and ...

  5. Problem Management: 8 Steps to Incident Resolution [2024] • Asana

    Summary. Problem management is an 8 step framework most commonly used by IT teams. You can use problem management to solve for repeating major incidents. By organizing and structuring your problem solving, you can more effectively get to the root cause of high-impact problems—and devise a solution. Solving the root cause prevents recurrence ...

  6. How to master the seven-step problem-solving process

    To discuss the art of problem solving, I sat down in California with McKinsey senior partner Hugo Sarrazin and also with Charles Conn. Charles is a former McKinsey partner, entrepreneur, executive, and coauthor of the book Bulletproof Problem Solving: The One Skill That Changes Everything [John Wiley & Sons, 2018].

  7. The Art of Effective Problem Solving: A Step-by-Step Guide

    Table of Contents. Problem Solving Methodologies. A3 Problem Solving Method: Step 1 - Define the Problem. Step 2 - Gather Information and Brainstorm Ideas. Step 3 - Evaluate Options and Choose the Best Solution. Step 4 - Implement and Monitor the Solution. Conclusion.

  8. Understanding Systems Thinking: A Path to Insightful Problem-Solving

    The Benefits of Systems Thinking. Systems thinking offers several compelling reasons to adopt its principles in problem-solving endeavours. By broadening our thinking and enabling us to articulate problems in novel ways, it expands the range of choices available for resolving complex issues. Furthermore, systems thinking emphasises the ...

  9. A Practical Guide to Problem-Solving Techniques in Systems Engineering

    A thought experiment is a disciplined imagination process that engineers use to ponder a problem or system without conducting physical experiments. By using hypothetical scenarios, engineers can predict potential challenges and find solutions without the cost and time of real-world testing. For instance, consider the design of an urban traffic ...

  10. Developing and Implementing Information Systems

    Abstract. In this chapter, we will describe the system approach to problem solving, explain the steps of the systems development life cycle, point out the need for successful project management, change management and risk management, and compare different development approaches organisations can apply. Download to read the full chapter text.

  11. 35 problem-solving techniques and methods for solving complex problems

    6. Discovery & Action Dialogue (DAD) One of the best approaches is to create a safe space for a group to share and discover practices and behaviors that can help them find their own solutions. With DAD, you can help a group choose which problems they wish to solve and which approaches they will take to do so.

  12. An effective problem solving process for IT professionals

    Even the changes that are supposed to solve and prevent other known problems, often result in the introduction of new and unexpected problems. It's not unheard of that sometimes even routine maintenance on equipment can cause problems. Scenario 1. Take for example, updating firmware on a network switch. This should be a relatively trouble ...

  13. Solving Real-World Issues With Management Information Systems

    Management information systems (MIS) can refer to individual information systems, an organizational department and a field of study. MIS addresses organizational information management needs, supports effective decision-making and solves complex problems in all instances and applications. Organizations rely on MIS and related information ...

  14. What Is Management Information Systems (MIS)? Your Career Guide

    Management information systems (MIS) is the study and application of information systems that organizations use for data access, management, and analytics. For MIS to be effective, you must understand and carefully map out business processes. ... Analysts typically have strong analytical and problem-solving skills, as well as the ability to ...

  15. 7 Steps for Effective Problem Management in IT

    The process for problem management then is a structured way to manage problems in IT projects after they are first reported by users or service desk technicians. The problem management process can be broken down into these seven steps. 1. Detection. To resolve a problem, first, you have to identify it.

  16. PDF Solving Business Problems with Information Systems

    Solving Business Problems with Information Systems I. TOPIC OVERVIEW Section I, A Systems Approach to Problem Solving, describes and gives examples of the steps involved in using a systems approach to solve business problems. Section II, Developing Information Systems Solutions, describes the activities involved and products produced in each of the stages of the information systems development ...

  17. How to Improve Your Problem Solving Skills in Information Systems

    Improving your problem solving skills requires effort, persistence, and a willingness to learn from mistakes and feedback. To get started, develop a problem solving mindset and learn the problem ...

  18. Information Problem-Solving: The Big Six Skills Approach

    Abstract. Explains the components of a library and information skills curriculum and integrated instructional model that was developed to help students solve information problems. The six steps ...

  19. The role of team problem solving competency in information system

    A project can be designed with both reactive and anticipatory mechanisms that heighten problem solving competency and improve product quality of the resulting information system. We develop a model based on work in new product development and test it with a sample of 119 information system (IS) development professionals to examine the expected ...

  20. Boost Your IS Career: Master Problem-Solving for Promotion

    1. Problem-Solving with Data: When issues arise, you can gather relevant data to understand the root cause. Tools like SQL can help you efficiently query databases and extract the information you ...

  21. Systems Approach to Problem Solving

    Recognize and define a problem or opportunity using systems thinking. Develop and evaluate alternative system solutions. Select the system solution that best meets your requirements. Design the selected system solution. Implement and evaluate the success of the designed system. 1. Defining Problems and Opportunities.

  22. What is information systems? Definition, uses, and examples

    Information systems examples. Information systems can improve nearly any business operation, but here are a few valuable ways you can put them to work. Expert systems: AI is becoming more advanced every day, and it's leveraged in information systems to simulate human problem-solving (think Siri!). Expert systems use knowledge that would ...

  23. Information support systems for problem solving

    Decision making. Information support systems. 103 Information Support Systems for Problem Solving David DERY + and Theodore J. MOCK * + The Hebrew University of Jerusalem, Faculty of Social Scien- ces, Mount Scopus, Jerusalem 91905, and *University of South- ern California, School of Business Administration, Los Angeles, CA, 90089.

  24. Leveraging Systems Models: A Strategic Advantage For IT ...

    The integration of systems models not only enriches IT experts' problem-solving tool kits but also ensures the delivery of innovative, sustainable solutions.

  25. Solving Business Problems with Information Systems

    A variety of information systems development methodologies tailor the systems approach. to the process of developing information systems solutions to business problems. A firm. may experience difficulties in applying the systems process to IS due to: 1. 2. Departmental/unit and/or emotional conflicts.