BSc CSIT Mathematics-I (MTH117) Complete Guide: TU 1st Semester Syllabus, Preparation Strategy & Exam Resources
Introduction
Mathematics-I (MTH117) is one of the foundation courses in the first semester of the Bachelor of Science in Computer Science and Information Technology (BSc CSIT) program under Tribhuvan University (TU). Many students enter the program expecting to spend most of their time programming, only to discover that mathematics underlies almost every advanced topic in computer science. Algorithm analysis, computer graphics, machine learning, cryptography, and numerical computing all build on the calculus, vector algebra, and differential equations introduced in this course.
Unlike school-level mathematics, MTH117 emphasizes conceptual understanding and mathematical modeling rather than rote formula memorization. Students learn to translate real-world situations into mathematical statements and solve them using calculus, series, vectors, and multivariable techniques. These skills carry directly into later coursework and into technical interviews after graduation.
This guide walks through the official MTH117 syllabus unit by unit, explains why each topic matters, highlights the formulas you'll use most, and lays out a realistic study plan. Whether you're starting your preparation early in the semester or revising during exam week, you can use this page as a single reference point and then dive into the detailed unit-wise articles linked at the end for worked examples and practice problems.
Official Course Information
| Particular | Details |
|---|---|
| Course Title | Mathematics I |
| Course Code | MTH117 |
| Semester | First Semester |
| Nature of Course | Theory |
| Full Marks | 80 + 20 |
| Pass Marks | 32 + 8 |
| Credit Hours | 3 |
Course Description
MTH117 covers functions of one variable, limits, continuity, and differentiation; integration and its applications; logarithmic and exponential functions; differential equations; vectors and their applications; and partial derivatives with multiple integration. Together these units build the calculus and linear-algebra foundation used throughout the rest of the CSIT curriculum.
Course Objective
The course aims to help students formulate real-world problems as mathematical statements, develop solutions at a level appropriate for an undergraduate computing program, and express those solutions numerically, analytically, or graphically. Beyond passing the exam, the goal is to build the quantitative reasoning that later subjects assume you already have.
Why Mathematics-I Matters for CSIT Students
It's easy to treat MTH117 as a hurdle to clear before "real" CS courses begin, but several core computing topics depend directly on it. Limits and derivatives show up in the analysis of algorithm growth rates and in gradient-based machine learning. Differential equations model systems used in simulation and control. Vectors and partial derivatives are the backbone of computer graphics, 3D transformations, and neural network training. Students who treat this semester as a throwaway tend to struggle later when these ideas reappear without re-explanation.
Official Unit-Wise Syllabus Overview
Unit 1: Function of One Variable (5 Hrs)
This unit covers polynomial, trigonometric, exponential, and logarithmic functions, along with how to determine their domain, range, and graph. It sounds basic, but a shaky grasp here makes every later unit harder, since limits, derivatives, and integrals are all defined in terms of functions. Expect questions asking you to find domain/range restrictions, sketch transformations of standard functions, and identify even/odd or periodic behavior.
Unit 2: Limits and Continuity (4 Hrs)
You'll study the formal definition of a limit, limits at infinity, continuity at a point and on an interval, and the three types of asymptotes (horizontal, vertical, and slant). This unit is conceptually dense because it introduces rigorous mathematical language for the first time. Most exam questions here ask you to evaluate limits algebraically, identify points of discontinuity, or find asymptotes of rational functions.
Unit 3: Derivatives (4 Hrs)
This unit introduces the derivative as a rate of change, connecting it to tangent lines and velocity. You'll cover differentiability, the Mean Value Theorem, and indeterminate forms solved using L'Hôpital's Rule. Expect a mix of direct differentiation problems and theory-based questions that ask you to verify MVT conditions or resolve 0/0 and ∞/∞ limits.
Unit 4: Applications of Derivatives (4 Hrs)
Here derivatives get put to work: curve sketching using increasing/decreasing intervals and concavity, optimization problems (maximizing area, minimizing cost, and similar word problems), and Newton's Method for approximating roots. Optimization word problems are a frequent exam favorite because they test whether you can translate a real scenario into a function before differentiating.
Unit 5: Antiderivatives (5 Hrs)
This unit reverses the process: indefinite integrals, rectilinear motion (position from velocity/acceleration), definite integrals, the Fundamental Theorem of Calculus, and improper integrals. The Fundamental Theorem is the conceptual hinge of the whole course since it connects differentiation and integration, so expect at least one question testing whether you understand why it works, not just how to apply it.
Unit 6: Applications of Antiderivatives (5 Hrs)
You'll use integration to find areas between curves, volumes of solids of revolution (disk, washer, and shell methods), arc length, and surface area of revolution. These problems are typically longer and multi-step, so practicing the setup (drawing the region, choosing the right method) matters more than the integration mechanics themselves.
Unit 7: Ordinary Differential Equations (6 Hrs)
This is one of the heavier units: first-order separable equations, linear first-order equations (solved with an integrating factor), second-order linear homogeneous equations, and non-homogeneous equations solved with the method of undetermined coefficients. Because it carries the most teaching hours, it's also typically weighted heavily in the exam. Students who skip practicing the homogeneous/non-homogeneous distinction tend to lose marks here.
Unit 8: Infinite Sequence and Series (5 Hrs)
You'll learn convergence tests for sequences and series, power series, and Taylor and Maclaurin series expansions. Convergence tests (ratio test, comparison test, integral test, alternating series test) are usually tested as "determine whether this series converges" problems, while Taylor/Maclaurin questions ask you to expand a given function around a point.
Unit 9: Plane and Space Vectors (4 Hrs)
This unit covers vector algebra, dot and cross products, equations of lines and planes in 3D, derivatives and integrals of vector functions, arc length and curvature, the normal and binormal vectors, and motion in space. It's the most geometry-heavy unit and a strong foundation for computer graphics and physics-based subjects later in the program.
Unit 10: Partial Derivatives and Multiple Integration (3 Hrs)
The final unit extends single-variable calculus to functions of several variables: limits and continuity in multiple variables, partial derivatives, tangent planes, finding maxima and minima using the second derivative test, and evaluating multiple integrals. It carries the fewest teaching hours but is still commonly represented in the exam, so don't deprioritize it just because the unit is short.
Important Formula Quick-Reference
| Topic | Key Formula |
|---|---|
| Derivative (power rule) | d/dx(xⁿ) = n·xⁿ⁻¹ |
| Product rule | d/dx(uv) = u′v + uv′ |
| Quotient rule | d/dx(u/v) = (u′v − uv′)/v² |
| Chain rule | d/dx[f(g(x))] = f′(g(x))·g′(x) |
| Mean Value Theorem | f′(c) = [f(b) − f(a)] / (b − a) |
| L'Hôpital's Rule | lim f(x)/g(x) = lim f′(x)/g′(x), for 0/0 or ∞/∞ forms |
| Newton's Method | xₙ₊₁ = xₙ − f(xₙ)/f′(xₙ) |
| Fundamental Theorem of Calculus | ∫ₐᵇ f(x) dx = F(b) − F(a) |
| Integration by parts | ∫u dv = uv − ∫v du |
| Area between curves | ∫ₐᵇ [f(x) − g(x)] dx |
| Volume (disk method) | V = π∫ₐᵇ [f(x)]² dx |
| Arc length | L = ∫ₐᵇ √(1 + [f′(x)]²) dx |
| Linear first-order ODE | dy/dx + P(x)y = Q(x), integrating factor μ = e^∫P(x)dx |
| 2nd-order homogeneous ODE | ay″ + by′ + cy = 0, solved via characteristic equation ar² + br + c = 0 |
| Taylor series | f(x) = Σ [f⁽ⁿ⁾(a)/n!]·(x − a)ⁿ |
| Ratio test | L = lim |
| Dot product | a·b = |
| Cross product magnitude | |
| Curvature | κ = |
| Second derivative test (2 variables) | D = fₓₓfᵧᵧ − (fₓᵧ)² |
This table is meant as a quick recall sheet, not a substitute for working through derivations — the unit-wise articles linked at the end walk through where each formula comes from with solved examples.
How Mathematics-I Is Typically Tested
TU mathematics papers for MTH117 generally combine short conceptual questions with longer computational problems, in line with the 80 (theory) + 20 (internal) marks split. Short questions tend to test whether you understand definitions and can apply a formula directly — evaluating a limit, finding a derivative, checking convergence of a series. Longer questions usually require multiple steps: setting up an optimization or related-rates problem, solving a differential equation from start to finish, or computing a volume of revolution. Units with more teaching hours, particularly Differential Equations and Antiderivatives, tend to carry proportionally more weight, so allocate your study time accordingly rather than spending equal time on every unit.
30-Day Study Plan
- Days 1–6: Units 1–2 (Functions, Limits and Continuity). Build the conceptual base before moving to derivatives.
- Days 7–12: Units 3–4 (Derivatives and Applications). Spend extra time on optimization word problems, since they're frequently tested and easy to lose marks on.
- Days 13–18: Units 5–6 (Antiderivatives and Applications). Practice setting up area/volume problems with diagrams before integrating.
- Days 19–24: Unit 7 (Differential Equations). This is the heaviest unit — give it the most days and drill both homogeneous and non-homogeneous cases.
- Days 25–27: Unit 8 (Series) and Unit 9 (Vectors).
- Days 28–29: Unit 10 (Partial Derivatives and Multiple Integration).
- Day 30: Full-syllabus review using the formula quick-reference table above.
Last-Minute Revision Checklist (3 Days Before the Exam)
- Re-derive (don't just memorize) the formulas you're weakest on — derivation helps you recall the formula correctly under pressure.
- Redo at least one problem from each unit rather than only rereading notes.
- Review L'Hôpital's Rule, the integrating factor method, and the characteristic equation method — these three trip up the most students.
- Time yourself on one full-length practice paper to check pacing across all ten units.
- Skim the formula quick-reference table one final time the night before.
Common Mistakes Students Make in Mathematics-I
- Memorizing formulas without understanding when each one applies, which falls apart on word problems.
- Treating Differential Equations as "extra" practice instead of giving it proportional time relative to its teaching hours.
- Skipping diagrams for area/volume/arc-length problems, leading to wrong setup even when the integration itself is correct.
- Confusing convergence tests in Unit 8 (using the ratio test where the comparison test is more appropriate, for example).
- Ignoring vector geometry (Unit 9) until the last week, even though it's heavily visual and benefits from earlier, spaced practice.
- Not practicing past-paper-style multi-step problems, and only solving isolated textbook exercises.
Tips to Score High Marks
- Practice past TU question papers under timed conditions to get used to the question style, not just the content.
- For long-answer questions, write out each step clearly — TU papers often award partial marks for correct setup even if the final answer is wrong.
- Keep a single formula sheet (similar to the table above) and revise it daily during the last two weeks rather than cramming it once.
- Form a small study group for Differential Equations and Vectors specifically, since talking through multi-step problems out loud helps catch setup errors.
- Don't neglect Unit 10 just because it has fewer teaching hours — short units are sometimes underprepared by students and can be an easy source of marks if you're solid on them.
Frequently Asked Questions (FAQs)
Is Mathematics-I (MTH117) hard for BSc CSIT first-semester students? Most students find it challenging because of the breadth of topics rather than the difficulty of any single concept. With consistent daily practice rather than last-minute cramming, it's very manageable.
Which unit carries the most weight in the MTH117 exam? Units with more teaching hours, especially Unit 7 (Ordinary Differential Equations), Unit 5 (Antiderivatives), and Unit 6 (Applications of Antiderivatives), tend to be represented more heavily, though exact weighting can vary by year.
What textbook is recommended for MTH117? The official syllabus lists Calculus: Early Transcendentals by James Stewart (7th Edition) as the primary text, with Thomas' Calculus: Early Transcendentals (12th Edition) as a reference.
How should I prepare if I have less than two weeks before the exam? Focus first on Differential Equations and Derivatives/Applications, since they're heavily weighted and build on skills used throughout the paper, then move through the remaining units using the formula quick-reference table for fast recall.
Do I need to memorize derivations, or just final formulas? Understanding derivations is worth the extra time because TU exams sometimes ask conceptual or "prove that" style questions, and derivations also make formulas easier to recall correctly under exam pressure.
Is vector calculus (Unit 9) useful beyond this course? Yes — vector algebra and calculus reappear in computer graphics, physics-based subjects, and any later course involving 3D transformations or motion, so it's worth understanding rather than just memorizing for the exam.
Conclusion
Mathematics-I covers a wide range of topics in a single semester, but each unit builds logically on the one before it, and the exam pattern rewards students who practice multi-step problems rather than memorize isolated formulas. Use the 30-day plan above as a starting framework, adjust it based on your own strengths, and revisit the formula quick-reference table regularly rather than only before the exam.
For worked examples, step-by-step solved problems, and practice questions for each topic, see the detailed unit-wise guides:
- Unit 1: Function of One Variable (coming soon)
- Unit 2: Limits and Continuity (coming soon)
- Unit 3: Derivatives (coming soon)
- Unit 4: Applications of Derivatives (coming soon)
- Unit 5: Antiderivatives (coming soon)
- Unit 6: Applications of Antiderivatives (coming soon)
- Unit 7: Ordinary Differential Equations (coming soon)
- Unit 8: Infinite Sequence and Series (coming soon)
- Unit 9: Plane and Space Vectors (coming soon)
- Unit 10: Partial Derivatives and Multiple Integration (coming soon)







0 Comments