📚
Course Summary
For Stats 1 summary click here.
For English 1 summary click here.
For Qualifier exam click here.
Week 1 to 4 (Qualifier)
Week 1: Relations and Venn Diagrams
In the first week, we focused on understanding different types of relations: reflexive, symmetric, transitive, and equivalence relations. We also explored the use of Venn diagrams to solve problems involving sets.
Important Concepts:
- Reflexive Relation: A relation
on a set is reflexive if . - Symmetric Relation: A relation
on a set is symmetric if . - Transitive Relation: A relation
on a set is transitive if . - Equivalence Relation: A relation that is reflexive, symmetric, and transitive.
Venn Diagram Formula:
Example:
Suppose we have three groups of people: those who like football, hockey, and cricket. Let: (football) (hockey) (cricket)
Week 2: Lines and Distance
This week, we covered various geometric concepts related to lines and distances.
Important Concepts:
- Midpoint Formula: The midpoint of a line segment with endpoints
and is: - Distance Formula: The distance between two points
and is: - Equation of a Line: The general form is
. - Distance Between Two Parallel Lines: The distance between
and is: - Sum of Squared Errors: A measure used in regression analysis to determine the accuracy of a model.
Week 3: Quadratic Functions
We delved into quadratic functions, their properties, and their graphs.
Important Concepts:
- Quadratic Function: A function of the form
. - Vertex: The highest or lowest point on the graph of a parabola, given by:
- Discriminant: Determines the nature of the roots of a quadratic equation
, given by:
Week 4: Polynomials
This week, we explored polynomials and their properties.
Important Concepts:
- Zeros of a Polynomial: The values of
for which . - Factors of a Polynomial: Expressions that can be multiplied to get the polynomial.
- Intercepts: Points where the graph intersects the axes.
- Multiplicity of Roots: The number of times a particular root appears.
- End Behavior: The behavior of the graph as
approaches . - Turning Points: Points where the graph changes direction.
Mid-Term Focus (Weeks 5 to 8)
For the mid-term quiz, more weightage will be given to topics from weeks 5 to 8, but questions from weeks 1 to 4 will also be included.
Week 5: Functions
We studied different types of functions and their compositions.
Important Concepts:
- One-to-One Function: A function where each element of the range is mapped to by exactly one element of the domain.
- Onto Function: A function where every element of the range is mapped to by at least one element of the domain.
- Composition of Functions: Combining two functions
and to form .
Week 6: Logarithmic Functions
This week, we focused on logarithmic functions and their properties.
Important Concepts:
- Logarithmic Function: The inverse of an exponential function, given by
. - Properties of Logarithms:
- Concept of Limits: Understanding the behavior of functions as they approach specific points.
- L'Hôpital's Rule: A method to evaluate limits of indeterminate forms:
Week 8: Continuity and Differentiability
In Week 8, we focused on the concepts of continuity and differentiability, which are fundamental in calculus.
Continuity:
A function is defined. exists. .
Differentiability:
A function
Equation of Tangent and Linear Approximation
Equation of Tangent:
The equation of the tangent line to the curve
Linear Approximation:
Linear approximation is used to approximate the value of a function near a given point. The linear approximation of
End-Term Focus: Graph Theory
Question will be from week 1 to 11
For the end-term exam, more weightage will be given to graph theory. Here are the key topics:
Week 9: Integration
Integration:
Integration is the process of finding the integral of a function, which represents the area under the curve of the function. The definite integral of
Riemann Sum:
The Riemann sum is a method for approximating the definite integral of a function. It involves dividing the interval
Graph Theory
Breadth-First Search (BFS) and Depth-First Search (DFS): BFS and DFS are fundamental algorithms for traversing graphs. BFS explores all neighbors of a vertex before moving on to the next level, while DFS explores as far as possible along each branch before backtracking.
Directed Acyclic Graph (DAG): A DAG is a directed graph with no cycles. It is important for representing tasks with dependencies.
Topological Sorting:
Topological sorting is used to order the vertices of a DAG such that for every directed edge
Longest Path in DAG: Finding the longest path in a DAG is important for determining the maximum time required to complete a sequence of tasks.
Dijkstra's Algorithm: Dijkstra's algorithm finds the shortest path from a source vertex to all other vertices in a graph with non-negative weights. It does not work with negative weights.
Bellman-Ford and Floyd-Warshall Algorithms: These algorithms handle graphs with negative weights but no negative cycles. Bellman-Ford works by iterating over all edges, while Floyd-Warshall considers all pairs of vertices.
Minimum Cost Spanning Tree (MCST): An MCST connects all vertices in a graph with the minimum total edge weight. Kruskal's and Prim's algorithms are used to find the MCST.
Kruskal's Algorithm: Kruskal's algorithm sorts all edges and adds them one by one to the spanning tree, ensuring no cycles are formed.
Prim's Algorithm: Prim's algorithm starts with a single vertex and grows the spanning tree by adding the smallest edge that connects a vertex in the tree to a vertex outside the tree.
Both algorithms yield the same MCST, and it's useful to cross-verify the results obtained from one algorithm with the other.
For quick revision check out short notes on youtube
Best of luck for your exams!
Comments
Post a Comment