StudySmarter: Study help & AI tools
4.5 • +22k Ratings
More than 22 Million Downloads
Free
|
|
Problem Solving Techniques

Unlock the secrets of efficient coding, develop an in-depth understanding of different strategies, and learn how decision-making plays a significant role in using problem-solving techniques in Computer Science. This enlightening journey begins with an exploration into the definition of problem-solving techniques and their paramount importance in Computer Science. You further discover the basic problem-solving methods, their practical applications, and how these foundational skills apply directly to coding. 

Mockup Schule Mockup Schule

Explore our app and discover over 50 million learning materials for free.

Problem Solving Techniques

Want to get better grades?

Nope, I’m not ready yet

Get free, full access to:

  • Flashcards
  • Notes
  • Explanations
  • Study Planner
  • Textbook solutions
Illustration

Lerne mit deinen Freunden und bleibe auf dem richtigen Kurs mit deinen persönlichen Lernstatistiken

Jetzt kostenlos anmelden

Nie wieder prokastinieren mit unseren Lernerinnerungen.

Jetzt kostenlos anmelden
Illustration

Unlock the secrets of efficient coding, develop an in-depth understanding of different strategies, and learn how decision-making plays a significant role in using problem-solving techniques in Computer Science. This enlightening journey begins with an exploration into the definition of problem-solving techniques and their paramount importance in Computer Science. You further discover the basic problem-solving methods, their practical applications, and how these foundational skills apply directly to coding.

Going deeper, you explore seven pivotal problem-solving techniques, understanding their concepts and their indispensable uses in Computer Science. Finally, learn the nuances involved in contrasting problem-solving and decision-making techniques, the subtleties that set them apart, and ways in which they can be combined for the most effective results, in terms of both efficiency and creativity.

Understanding Problem-Solving Techniques

Problem-solving techniques in computer science are the protocols, procedures, or methods employed to identify the root cause of a problem and construct an efficient solution.

Definition of problem-solving techniques in Computer Science

Problem-solving techniques in computer science refer to the methods used to find solutions to complex issues using algorithmic or heuristic approaches. These techniques can be systematic, analytical, or intuitive, encompassing traditional programming, machine learning, or artificial intelligence methods.

These techniques are used in various domains within computer science, including data analysis, software development, network troubleshooting, and cybersecurity. For example, in software development, problem-solving may involve debugging an application. Here, the issue could be a broken functionality within the application, and the solution might be modifying a specific segment of code.

At a software development company, the team notices that their mobile application crashes whenever a user tries to upload a profile picture. By employing problem-solving techniques such as testing, the team identifies that the crash occurs due to a buffer overflow when processing large images. Once identified, they solve this problem by modifying the code to handle large image sizes better.

Importance of problem-solving techniques in Computer Science

Problem-solving techniques are the cornerstone of computer science. From designing efficient algorithms for a given task to optimising or guaranteeing certain performance metrics, these techniques are used daily. Here's why they're important:

  • Mitigating runtime errors and system crashes: By identifying and rectifying coding mistakes effectively.
  • Optimizing software: Problem-solving techniques can help improve the efficiency of software, leading to enhanced user experience and reduced resource consumption.
  • Data analysis: They help in organizing, evaluating, and interpreting complex datasets to derive meaningful insights.
  • Cybersecurity: By identifying potential vulnerabilities and patching them before they can be exploited, thereby safeguarding digital assets.

In the domain of machine learning, problem-solving techniques are even more paramount. Here, problems can include determining the best machine learning model for a specific task, tuning the hyperparameters of a model, or dealing with issues like data imbalance or overfitting. These techniques can guide computer scientists in their quest to develop robust, accurate machine-learning models that can make sense of vast, complex data.

Given the rapidly evolving nature of computer science, mastering various problem-solving techniques is essential to stay ahead in this field. It helps you adapt to new advancements and tackle a wide range of challenges that come your way.

Basic Problem-Solving Techniques

Before diving into advanced, specialized techniques for solving problems, it is essential to become proficient in the fundamentals, which transcend specific problem domains and provide a solid foundation for exploring more complex areas within computer science.

Introduction to basic problem-solving techniques

There are several standard problem-solving techniques that you can employ irrespective of the field of study in computer science. The first step, however, is always understanding the problem, then you can choose the right strategy to solve it. Here are some of the basic problem-solving methods that are particularly useful:

Divide and Conquer: This technique involves breaking a larger problem into smaller, more manageable parts, solving each of them individually, and finally combining their solutions to get the overall answer.

Consider an example in the context of sorting a list of numbers. Using a divide-and-conquer algorithm like Merge Sort, the list is continually split in half, until you reach lists of size one. These lists are inherently sorted, and then you recursively merge these sorted lists, resulting in a fully sorted list.

Algorithm Design: This technique involves formalizing a series of organized steps into an algorithm to solve a specific problem. Common approaches include greedy algorithms, dynamic programming, and brute force.

Heuristics: These are rules of thumb or educated guesses that can help you find an acceptable, if not the perfect, solution when the problem is too complex for a direct mathematical approach, or when computational resources are limited.

Heuristics are not guaranteed to yield the optimal solution but are often good enough for practical purposes and can dramatically reduce the time and resources needed to find a solution.

Recursive Thinking: Recursion is predicated on solving a problem by breaking it down into smaller instances of the same problem. The idea is that, eventually, you will get to a problem that is small enough to solve directly.

Even though these techniques might sound simple, they form a cornerstone and are often cloaked within complex problem-solving techniques used in higher-level computer science.

Practical application of basic problem-solving techniques

The practical application of basic problem-solving techniques in computer science is broad and varied, depending on the specific domain. However, some applications cut across most sectors of computer science:

Problem-solving techniquePractical application
Divide and ConquerUsed in sorting algorithms (Quick Sort, Merge Sort), searching algorithms (Binary Search), FFT (Fast Fourier Transform) algorithm for converting a signal into its constituent frequencies
Algorithm DesignUsed in routing protocols for networks (Dijkstra's algorithm), algorithms for computer graphics and rendering, cryptography algorithms for secure communications
HeuristicsUsed in AI for game playing (Chess, Go), in natural language processing for language translation, and in navigation systems for route planning
Recursive ThinkingUsed in parsing syntax trees in compilers, backtracking algorithms for solving puzzles (Sudoku Solver), and many algorithms in data structures (Tree/Graph traversals)

Each technique has its strengths and weaknesses, and the key is knowing which technique (or combination of techniques) to use for a particular problem. Remember, the goal is not just to find any solution, but to find the most efficient one possible.

Other fields, too, benefit from these problem-solving techniques. For example, bioinformatics implements algorithm design to match genetic sequences, while digital forensics employs divide-and-conquer techniques to sift through large amounts of data during an investigation. Moreover, heuristics play a significant role in the burgeoning field of AI, proving that these problem-solving techniques not only provide a solid foundation for computer science but also have real-world applications.

Coding Problem-Solving Techniques

Delving into the more specific realm of coding within computer science, the arsenal of problem-solving techniques takes on facets best suited for resolving issues related to programming and development.

Importance of coding problem-solving techniques in Computer Science

Coding problem-solving techniques are the tools that software developers use to create, optimise, and manage software applications effectively. These techniques play an instrumental role in many aspects:

  • Enhancing code efficiency: Efficient code is faster to execute, consumes less memory, and results in responsive, user-friendly applications. For instance, choosing an optimal sorting algorithm based on the size of the list can markedly improve runtime.
  • Mitigating errors: Through structured debugging and systematic thinking, developers can track and rectify logic errors, syntax errors, or runtime exceptions, leading to robust, error-free code.
  • Facilitating code readability and maintenance: Good coding practices, such as following a consistent naming scheme and using descriptive comments, make code easier to understand, troubleshoot, and maintain – essential when working in a team.
  • Implementing complex functionalities: Many modern applications require intricate algorithms, use elaborate data structures, and handle large volumes of data. Mastery of coding problem-solving techniques enables developers to tackle these challenges effectively.

Examples of coding problem-solving techniques

There's a myriad of coding problem-solving techniques at a developer's disposal. These methods typically supplement basic problem-solving techniques with practices tailored for the coding environment. Let's delve into a few:

Debugging: Debugging is the process of identifying and rectifying coding errors. It often involves using built-in tools or software debuggers to step through the code line-by-line, track variable values, and uncover where things go awry. A systematic debugging approach is essential for problem-solving in coding.

Suppose you are developing a JavaScript web application, and some functionality isn't working as expected. By using the browser's debugging tools, you can step through your JavaScript code, watch the values assigned to variables, and identify the line creating the issue.

Code Refactoring: Refactoring implies rearranging and improving the structure of existing code without changing its functionality. Refactoring techniques, such as extracting repeated code into functions or simplifying conditional expressions, are integral problem-solving tools aimed at improving code readability and efficiency.

Using Data Structures & Algorithms: Effective use of data structures (Arrays, LinkedList, Stack, Queue, Tree, Hashtable, etc.) and algorithms (Sorting, Searching, etc.) is fundamental in coding problem-solving. The correct choice and application of such tools can have a dramatic impact on a program’s performance.

Version Control: While writing code, you often need to try out different solutions or collaborate with other team members. Using version control systems, like Git, helps manage changes, track history, and merge code from different branches. This aids in solving and managing complex coding problems.

Apart from these fundamental techniques, advanced paradigms, such as Test-Driven Development (TDD), Behaviour Driven Development (BDD), etc., also exist. In TDD, the developer writes tests for a function before writing the actual function. In BDD, the behaviour of an application from the end user's perspective is the guiding force behind development. These paradigms incorporate problem-solving in their methodologies and guide the development process to create effective, robust applications.

Indeed, coding problem-solving techniques enrich a developer's toolkit and provide avenues to tackle the myriad of challenges that arise in programming. Whether it's minimising bugs, improving code efficiency, or implementing complex functionalities, these techniques are indispensable in daily coding endeavours.

In-depth study of 7 Problem-Solving Techniques

Problem-solving takes centre stage in the realm of computer science, where challenges need methodical approaches for efficient resolution. Let's delve into an in-depth exploration of seven such techniques, with each offering a unique perspective on how to tackle and solve issues effectively.

Conceptual understanding of the 7 problem-solving techniques

Within the realm of computer science, efficient problem-solving techniques can be the key to unlocking streamlined workflows, effective data handling, and improved coding management. These problem-solving methods include:

  • Divide and Conquer: This technique splits larger problems into smaller, more manageable sub-problems, solves the sub-problems individually and combines the solutions to get a complete resolution. This technique is pertinent to a wide range of algorithms in computer science, including sorting and searching algorithms.
  • Greedy Algorithms: Greedy algorithms solve problems by making the best choice at each step, with the hope that these local optimal solutions will lead to a globally optimal solution. They are often used in scenarios where the optimal solution has a 'greedy property', such as in the famous 'travelling salesman' problem.
  • Backtracking: This technique incrementally builds candidates for the solutions and abandons a candidate as soon as it determines that this candidate cannot possibly be extended to a valid solution.
  • Dynamic Programming: This method solves complex problems by breaking them down into simpler sub-problems, but unlike divide and conquer, these sub-problems are not solved independently. Instead, the results of sub-problems are stored and utilised to build up solutions to larger problems.
  • Brute Force: This straightforward approach tries every possible solution until it finds the best one. The simplicity of this method often makes it a practical and easy-to-implement fallback plan, although it may not be the most efficient.
  • Randomised Algorithms: For certain problems, deterministic algorithms may be too slow or complex, and the solution space too large to navigate exhaustively. In such cases, randomised algorithms offer an option where random choices drive the solution process. These algorithms have proven extremely efficient in problems like QuickSort and the Monte Carlo method.
  • Heuristic Methods: Heuristics are problem-solving approaches that are not always guaranteed to provide the perfect solution but will produce a good solution in a reasonable time. Various AI and machine learning techniques, such as genetic algorithms or neural networks, heavily use heuristic methods.

A Greedy Algorithm is one where, at each step, the choice that looks the best at that moment is selected with the belief that this choice will lead to an optimal global solution.

Understanding the foundations of these techniques provides a comprehensive toolset to approach a wide array of problems in computer science. It's important to remember that a technique's effectiveness largely depends on the nature of the problem.

Uses of the 7 problem-solving techniques in Computer Science

Each problem-solving method can be coupled with different facets within computer science. For example, encryption techniques, compression algorithms, network routing strategies, and database searches all rely on precise problem-solving methodologies. Here are just a few of the potential uses for each method:

Problem-solving techniqueApplication in Computer Science
Divide and ConquerUsed in algorithms like quicksort and mergesort, matrix multiplication, and Fast Fourier Transform.
Greedy AlgorithmsImplemented in algorithms for task scheduling, Prim's and Kruskal's for minimum spanning trees, and Dijkstra's for shortest paths.
BacktrackingApplied in solving Sudoku puzzles, the eight queens problem, or in the creation of mazes.
Dynamic ProgrammingUsed in algorithms for sequence alignment in bioinformatics, efficient routing in telecommunications and graph theory, or resource allocation in operations research.
Brute ForceFound in simple search algorithms, gaming solutions such as tic-tac-toe, or password cracking techniques.
Randomised AlgorithmsUsed in cryptography for key generation and primality testing, and in algorithm design like the randomised version of quicksort - 'Randomized-Quicksort'
Heuristic MethodsEmployed in machine learning and artificial intelligence, like A* pathfinding for game development or genetic algorithms for feature selection in machine learning, game AI and automation, decision making in robotics.

The flexibility and variety of these problem-solving techniques enable a far-reaching applicability across the vast landscape of computer science. By understanding and mastering these techniques, you can tackle a wide array of complex problems more efficiently.

Brainstorming Problem-Solving Techniques

In the context of problem-solving techniques, brainstorming is an invaluable tool. Brainstorming offers a creative, open-ended approach well-suited for troubleshooting challenges, stimulating new ideas, and tackling issues from fresh angles.

Role of brainstorming in problem-solving techniques

Brainstorming's emphasis on exploratory thinking and collaborative problem-solving makes it an excellent tool in computer science. This interactive technique encourages you to think outside the box, ushering a wealth of ideas and potential problem-solving approaches. Here's why brainstorming plays a pivotal role in problem-solving techniques:

  • Encourages Creative Thinking: Brainstorming breaks down the barriers of conventional thought, promoting imaginative solutions that may not be immediately evident. This out-of-the-box thinking can generate unique problem-solving methods for complex computer science problems.
  • Fosters Collaboration: Brainstorming is fundamentally a collective effort. By combining the expertise and viewpoints of multiple individuals, it can foster innovative problem-solving approaches that would not surface in isolated thinking.
  • Aids in Problem Understanding: In the process of brainstorming, not only are solutions discussed, but the problem itself is dissected from different angles. This aids in gaining a deeper understanding of the problem, essential to uncover the most effective solutions.

Consider a team of developers brainstorming to develop a feature for a software application. One developer might suggest a direct approach that, although simple, may not be the most efficient. Another team member could propose a more complex, but efficient, algorithm for the feature. A third might contribute an innovative approach that balances both performance and simplicity.

Through this collective brainstorming, the team converges on the most well-rounded approach, emphasising the critical role that brainstorming plays in problem-solving methodologies.

Applying brainstorming in problem-solving techniques

Brainstorming is not just about generating as many ideas as possible; it's also about creating an organized framework for synthesizing and evaluating those ideas.

For effective brainstorming in problem-solving and decision-making techniques, you can follow the steps below:

  1. Define the Problem: Clearly understand and define the problem that needs solving. The more accurately the problem is described, the more targeted the brainstorming will be.
  2. Set Guidelines: Establish rules for the brainstorming session to keep it focused and productive. These might include encouraging free thinking, postponing judgment, welcoming wild ideas, building on other ideas, and setting a time limit.
  3. Idea Generation: Begin brainstorming, inviting everyone involved to share their ideas. The key is to promote creativity and diversity of thought. No idea is too outlandish; often, the most unconventional suggestions lead to the most innovative solutions.
  4. Categorise and Consolidate: Once all the ideas are documented, start to group related ideas together and consolidate overlapping ideas.
  5. Analyse and Evaluate: It's time to analyse each idea based on its feasibility, potential impact, and resource requirement. Ideas that might not appear effective initially can be valuable when combined with other ideas.
  6. Select and Implement: After thorough analysis and discussion, decide on the best solution(s) to implement, based on the resources and time available, instantly making the brainstorming session instrumental in decision making as well.

Remember: Brainstorming is not just a one-time activity. It can and should be done iteratively. Often, implementation of an idea will bring forward new challenges, requiring another round of brainstorming. The strength of brainstorming lies in its fluid nature, allowing it to adapt and iterate until the problem at hand is fully resolved.

All in all, brainstorming is a powerful problem-solving and decision-making technique in computer science. By cultivating creativity, encouraging collaboration, and fostering a deeper understanding of problems, it holds the potential to tackle complex issues effectively.

Problem Solving and Decision Making Techniques

In computer science, problem-solving and decision-making form the core techniques widely employed in managing software development, debugging, data analysis, network operations, and more. Incorporating these methodologies in a concerted, structured manner can significantly enhance the outcomes in various fields of technology.

Difference between problem-solving and decision-making techniques

While it might appear that problem-solving and decision-making are interchangeable terms, they signify distinct aspects of addressing challenges in computer science.

  • Problem-solving: Within a computer science context, problem-solving involves identifying an issue within a system, application, or theory and resolving it effectively. This process often includes defining the problem, identifying root causes, generating alternative solutions, selecting a solution, and implementing it. Problem-solving often utilises techniques like debugging, algorithmic design, divide and conquer, dynamic programming, recursive thinking, heuristic methods, and more.
  • Decision-making: Decision-making, on the other hand, is a process of choosing between different alternatives. It often follows problem-solving whereby, after identifying potential solutions to a problem, the best option needs to be chosen. Decision-making techniques might include tools like decision matrices, cost-benefit analyses, or simple pros-and-cons lists. In computer science, decision-making can involve choosing the right data structure, deciding which algorithm to use, or selecting a coding methodology.

For instance, problem-solving might involve identifying a bottleneck in a software's performance and brainstorming different ways to enhance the efficiency. However, decision-making comes into play when you need to choose one of the generated solutions based on various factors like resource availability, time constraints, the impact of the solution, etc. Thus, while both techniques cater to overcoming challenges, problem-solving is more focused on creating solutions, whereas decision-making prioritises choosing the most optimal one from these solutions.

Combining problem-solving and decision-making for effective results

Effective results in computer science often stem from an amalgamation of both problem-solving and decision-making techniques. Combining these approaches ensures a comprehensive solution to challenges, complete with a thorough understanding of the problem, an array of possible solutions, and a well-thought-out decision on implementing the best solution.

Consider a situation where a computer system is repeatedly encountering a fatal error. Here's how problem-solving and decision-making techniques can be combined for effective results:

  1. Identification: Firstly, identify the issue affecting the system. This could be established through system monitoring tools or error logs. Once the problem is identified, it sets the base for problem-solving.
  2. Problem-Solving: Now, brainstorm for possible solutions to rectify the error. This could involve debugging the system or reviewing the code to find potential bugs. Perhaps the issue might be a memory leak that needs addressing or a race condition in multi-threaded operations. These solutions emanate from problem-solving techniques.
  3. Decision-Making: Once a list of possible solutions is generated, use decision-making techniques to select the best course of action. You could create a pros-and-cons list for each solution or use a more formal decision matrix to evaluate effectiveness, resources required, impact on system performance, etc. Finally, implement the solution.
  4. Review: After implementation, monitor the system to ensure the solution is working as intended. If the problem persists, the process returns to the problem-solving stage to revisit the issue and generate new solutions.

It's important to keep in mind that real-word scenarios seldom follow a tidy linear sequence. More commonly, problem-solving and decision-making are iterative, cyclical processes that overlap and interrelate. It's a dynamic environment where a bottleneck can stimulate new decision-making criteria, or an unforeseen decisional deadlock might call for fresh problem-solving ideas.

Combining problem-solving with decision-making offers a structured, strategic approach to tackle challenges commonly found in computer science. This conjunction of techniques provides a robust, versatile methodology to drive effective results across the diverse landscape of technology.

Problem Solving Techniques - Key takeaways

  • Problem-solving techniques in Computer Science are techniques which typically use algorithmic or heuristic approaches to resolve complex issues.
  • Problem-solving techniques can be systematic, analytical, or intuitive, and involve traditional programming, machine learning, or artificial intelligence methods. Applied in domains such as data analysis, software development, network troubleshooting, and cybersecurity.
  • Basic problem-solving techniques comprises of methods like divide and conquer, algorithm design, heuristics, and recursive thinking, all aimed at understanding and tackling problems.
  • Practical applications of basic problem-solving techniques include applications spanning across various sectors of computer science, including sorting and searching algorithms, routing protocols for networks, AI game playing, and parsing syntax trees in compilers.
  • Examples of coding problem-solving techniques include Debugging which is essential in identifying and rectifying coding errors, Code Refactoring to improve the structure of existing code without changing its functionality, Using Data Structures & Algorithms to have a dramatic impact on a program’s performance, and Version Control System like Git for managing changes, tracking history and merging code from different branches.

Frequently Asked Questions about Problem Solving Techniques

Some common problem solving techniques include brainstorming, the five whys technique, root cause analysis, lateral thinking, striving for simplicity, the 6 thinking hats and using flow charts or diagrams. Additionally, techniques such as SWOT analysis, Trial and Error, and Decision Trees can also be effective tools in problem-solving. Each technique is employed based on the nature and context of the problem to be solved. It's crucial to understand the problem fully before choosing a technique to apply.

The four problem solving techniques are: 

1) Defining the problem clearly to understand its nature and scope

2) Generating a range of potential solutions through brainstorming or creative thinking 

3) Evaluating and selecting the most feasible solutions by analysing their pros and cons

4) Implementing the chosen solution and monitoring its effectiveness.

To apply problem solving techniques, you first need to clearly identify and define the problem. Next, gather as much information as you can related to the problem. Once you have all the details, generate a range of potential solutions and evaluate each for its merits and downsides. Finally, implement the best solution and review its effectiveness, making adjustments as necessary.

Different problem solving techniques include brainstorming, lateral thinking, root cause analysis, the five whys technique, mind mapping, SWOT analysis, "divide and conquer" technique and use of algorithms or heuristics. Additionally, the use of decision trees, fishbone diagrams, and PEST & STEEPLE analysis are also widely used in strategic problem solving. All these techniques help in breaking down complex problems into manageable parts and finding effective solutions. The choice of technique may vary depending on the nature and complexity of the problem.

Choosing problem-solving techniques involves understanding the nature and scope of the problem, identifying all potential methods for resolution, and then carefully evaluating each one in terms of its appropriateness, feasibility, and probable effectiveness, selecting the most promising one. Take into consideration multidisciplinary insights, and factor in resources available, time constraints, and potential risks. It can also be useful to bring in outside perspectives or utilise brainstorming techniques. The chosen method should ideally be both effective and efficient in resolving the problem at hand.

Test your knowledge with multiple choice flashcards

What are problem-solving techniques in computer science?

Why are problem-solving techniques important in computer science?

What is the 'Divide and Conquer' problem-solving technique in computer science?

Next

What are problem-solving techniques in computer science?

Problem-solving techniques in computer science refer to the methods used to find solutions to complex issues using algorithmic or heuristic approaches, which can be systematic, analytical, or intuitive. They encompass traditional programming, machine learning, or artificial intelligence methods.

Why are problem-solving techniques important in computer science?

Problem-solving techniques in computer science are important for mitigating runtime errors and system crashes, optimizing software, organizing, evaluating, and interpreting complex datasets, and identifying potential cybersecurity vulnerabilities and patching them.

What is the 'Divide and Conquer' problem-solving technique in computer science?

The 'Divide and Conquer' technique involves breaking a larger problem into smaller, more manageable parts, solving each individually, and combining their solutions to get the overall answer. This is often used in sorting algorithms like Merge Sort.

What is the purpose of the 'Heuristics' problem-solving technique?

'Heuristics' are educated guesses that can help find an acceptable solution when the problem is too complex for a direct mathematical approach, or when computational resources are limited. They are often used in AI and language translations.

What are some of the important functions of coding problem-solving techniques in computer science?

Coding problem-solving techniques aid in enhancing code efficiency, mitigating errors, facilitating code readability and maintenance, and implementing complex functionalities.

What are some examples of coding problem-solving techniques?

Examples include debugging, code refactoring, using appropriate data structures and algorithms, and implementing version control.

Join over 22 million students in learning with our StudySmarter App

The first learning app that truly has everything you need to ace your exams in one place

  • Flashcards & Quizzes
  • AI Study Assistant
  • Study Planner
  • Mock-Exams
  • Smart Note-Taking
Join over 22 million students in learning with our StudySmarter App Join over 22 million students in learning with our StudySmarter App

Sign up to highlight and take notes. It’s 100% free.

Start learning with StudySmarter, the only learning app you need.

Sign up now for free
Illustration

Entdecke Lernmaterial in der StudySmarter-App