FE Civil · Chapter 1 · 11–17 exam questions

FE Civil Mathematics & Computational Tools

This chapter tests your ability to apply analytic geometry, single-variable calculus, vector operations, and computational tools (spreadsheets and structured programming) to engineering problems.

What the FE tests in Mathematics & Computational Tools

Analytic Geometry

As a civil engineer, you use analytic geometry constantly — computing slopes and grades for road profiles, finding distances between survey points, resolving force components with trig, solving oblique triangles for property boundaries, and working with conic sections in highway curve design. If a problem gives you coordinates, angles, or a line equation, this is your toolkit.

Single-Variable Calculus

As a civil engineer, you rely on calculus every time you compute the area under a load diagram, find where shear is zero (and moment is maximum) on a beam, or determine the rate of change of flow in a storm drain. Differentiation and integration are the backbone of structural analysis, earthwork volumes, and hydraulic design.

Vector Operations

As a civil engineer, vectors are how you resolve forces on structural connections, compute the moment of a force about a point, and determine resultant loads on a structure. Dot products find the angle between forces; cross products give you moment arms in three dimensions.

Computational Tools

As a civil engineer, you build spreadsheets for earthwork, quantity takeoffs, and load combinations, and you trace logic in macros and analysis scripts. The FE tests order of operations in cell formulas, relative vs. absolute references when a formula is copied, and reading short pseudocode (if-then-else and loops).

Key Mathematics & Computational Tools formulas

  • m=y2y1x2x1m = \frac{y_2 - y_1}{x_2 - x_1}
    Slope from Two PointsFE Handbook p. 36
  • d=(x2x1)2+(y2y1)2d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}
    Distance FormulaFE Handbook p. 36
  • x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
    Quadratic FormulaFE Handbook p. 36
  • asinA=bsinB=csinC\frac{a}{\sin A} = \frac{b}{\sin B} = \frac{c}{\sin C}
    Law of SinesFE Handbook p. 38
  • c2=a2+b22abcosCc^2 = a^2 + b^2 - 2ab\cos C
    Law of CosinesFE Handbook p. 38
  • ddx[f(g(x))]=f(g(x))g(x)\frac{d}{dx}[f(g(x))] = f'(g(x))\cdot g'(x)
    Chain RuleFE Handbook p. 49
  • udv=uvvdu\int u\,dv = uv - \int v\,du
    Integration by PartsFE Handbook p. 50
  • AB=ABcosθ\vec{A}\cdot\vec{B} = |A||B|\cos\theta
    Dot ProductFE Handbook p. 94
  • A×B=ABsinθn^\vec{A}\times\vec{B} = |A||B|\sin\theta\,\hat{n}
    Cross ProductFE Handbook p. 94
  • =A1+A2*A3  precedence: × before +\texttt{=A1+A2*A3}\ \rightarrow\ \text{precedence: } \times \text{ before } +
    Spreadsheet order of operationsFE Handbook —
  • IF(test, value if true, value if false)\texttt{IF(test, value if true, value if false)}
    Logical IF functionFE Handbook —
  • xj+1=xjf(xj)f(xj)x_{j+1} = x_j - \frac{f(x_j)}{f'(x_j)}
    Newton's Method (root-finding)FE Handbook p. 61

Sample Mathematics & Computational Tools problems

Q1. A tunnel centerline runs from coordinates (100,200)(100, 200) to (400,500)(400, 500). What is the length of the tunnel in meters?

Answer: 424.3 m

Explain it simply

Use the distance formula. The horizontal run is 300, the vertical rise is 300. Plug into d=3002+3002=180,000=424.3d = \sqrt{300^2 + 300^2} = \sqrt{180{,}000} = 424.3 m. Common mistake is adding the components (300+300=600300 + 300 = 600) instead of using the distance formula.

Q2. Two lines have slopes m1=3m_1 = 3 and m2=13m_2 = -\frac{1}{3}. Which statement is correct?

Answer: The lines are perpendicular

Explain it simply

Two lines are perpendicular when their slopes are negative reciprocals. Check: 3×(1/3)=13 \times (-1/3) = -1. That confirms they are perpendicular. Parallel lines have equal slopes, and coincident means they are the same line.

These are 2 of 1,126 problems across all 15 chapters. The full bank, lessons, mastery tracking, and timed exam simulation live inside the app.

Common Mathematics & Computational Tools mistakes on the FE

  • Forgetting to convert station notation to feet before computing slope.
  • Mixing up sin and cos when resolving force components — cos is "cozy" with adjacent.
  • No log rule for log(x + y) — only products, quotients, and powers have rules.
  • Forgetting the chain rule when differentiating composite functions.
  • Mixing up dot product (scalar result) and cross product (vector result).
  • Forgetting that spreadsheets obey precedence — =A1+A2*A3 multiplies before adding.
  • Letting a constant reference drift when copying a formula — lock it with $ (absolute).
  • Off-by-one in loops: FOR i = 1 TO N runs N times (endpoints inclusive).
  • Newton's method needs a good initial guess and a nonzero derivative; bisection needs a sign change f(a)·f(b) < 0.

Study Mathematics & Computational Tools the smart way

Bite-sized lessons, one-problem-at-a-time practice with instant feedback, and a streak to keep you going — built for the FE Civil exam.

Start practicing Mathematics & Computational Tools →