Unit 1: Numbers, Quantification and Numerical Applications
Mathematics provides a powerful way of modelling real-world behavior. In this unit, we explore various quantitative tools and numerical applications essential for fields like finance, computing, and logical deduction.
1. Binary Numbers
A number system is a method for expressing quantities. The decimal system (Base 10) uses digits 0-9. The binary system (Base 2) is used extensively in computing and uses only two digits: 0 and 1.
Converting Decimal to Binary
To convert a decimal number to binary, repeatedly divide the number by 2 and record the remainders. The binary representation is formed by reading the remainders from bottom to top.
Example: Convert 25 to binary.
- $25 \div 2 = 12$ remainder $1$
- $12 \div 2 = 6$ remainder $0$
- $6 \div 2 = 3$ remainder $0$
- $3 \div 2 = 1$ remainder $1$
- $1 \div 2 = 0$ remainder $1$
Reading bottom to top, $(25)_{10} = (11001)_2$.
Converting Binary to Decimal
Multiply each binary digit by $2^n$, where $n$ is the position of the digit starting from 0 on the right.
Example: Convert $(1011)_2$ to decimal. $$ (1011)2 = 1 \times 2^3 + 0 \times 2^2 + 1 \times 2^1 + 1 \times 2^0 $$ $$ = 8 + 0 + 2 + 1 = (11){10} $$
2. Indices, Logarithm and Antilogarithm
Indices
Indices (or powers) tell us how many times to multiply a number by itself. Let $a^x = N$. Here $a$ is the base and $x$ is the index or exponent.
Logarithm
The logarithm is the inverse operation to exponentiation. If $a^x = N$, then the logarithm of $N$ to the base $a$ is $x$. $$ \log_a N = x $$ (where $a > 0, a \neq 1$)
Types of Logarithms:
- Common Logarithm: Base 10, often written as $\log x$.
- Natural Logarithm: Base $e$ (approx. 2.718), often written as $\ln x$.
Laws of Logarithms
- Product Rule: $\log_a (mn) = \log_a m + \log_a n$
- Quotient Rule: $\log_a \left(\frac{m}{n}\right) = \log_a m - \log_a n$
- Power Rule: $\log_a (m^n) = n \log_a m$
- Change of Base Rule: $\log_a m = \frac{\log_b m}{\log_b a}$
Antilogarithm
The antilogarithm of a number is the number for which the given value is the logarithm. If $\log_{10} x = y$, then $x = \text{Antilog}(y) = 10^y$.
3. Clock
A clock face is a circle of $360^\circ$ divided into 12 hour spaces ($30^\circ$ each) and 60 minute spaces ($6^\circ$ each).
Fig 1.1: Clock face showing angles between hands
Speeds of Hands
- Minute hand: Traverses $360^\circ$ in 60 minutes. Speed = $6^\circ$ per minute.
- Hour hand: Traverses $30^\circ$ in 60 minutes. Speed = $0.5^\circ$ per minute.
Angle between hands at time $H$ hours and $M$ minutes: $$ \theta = |30H - 5.5M|^\circ $$ (Note: If $\theta > 180^\circ$, the reflex angle is $360^\circ - \theta$.)
Example: Find the angle at 4:20. $$ \theta = |30(4) - 5.5(20)| = |120 - 110| = 10^\circ $$
4. Calendar
The calendar concept is based on finding the number of Odd Days – days remaining after grouping periods into full weeks.
- Ordinary Year: 365 days = 52 weeks + 1 odd day.
- Leap Year: 366 days = 52 weeks + 2 odd days.
Odd Days in Centuries
- 100 years: 5 odd days
- 200 years: 3 odd days
- 300 years: 1 odd day
- 400 years (and multiples): 0 odd days
Finding the Day of the Week
Count the total odd days up to the given date and map the result to:
- 0 = Sunday
- 1 = Monday
- 2 = Tuesday
- … 6 = Saturday
5. Time, Work and Distance
Time and Work
If a person can finish a piece of work in $n$ days, their 1-day’s work is $\frac{1}{n}$. If A does $\frac{1}{x}$ work in a day and B does $\frac{1}{y}$ work in a day, together their 1-day work is $\left(\frac{1}{x} + \frac{1}{y}\right)$.
Time and Distance
The fundamental relationship is: $$ \text{Distance} = \text{Speed} \times \text{Time} $$
6. Seating Arrangement
Logical deduction determines the exact position of a person based on given clues.
- Linear Arrangement: People sitting in a row. Left/Right tracking is crucial.
- Circular Arrangement: People sitting around a table. Left/Right depends on whether they face the center or outwards.
Fig 1.2: Circular Seating Arrangement
Competency-Based Questions
-
(Application/Analysis): A digital system tracks user login times using a secondary processor that registers time in binary format. If a user logged in at the binary equivalent of $105$ minutes past midnight, what is the binary representation of this minute? Furthermore, convert the binary time
1001011to minutes to verify the logout time in decimal. -
(Logarithms in Real Life): Certain virus spreads follow an exponential decay when quarantined, modeled by the equation $P = P_0 (0.8)^t$, where $t$ is the number of days. If the town had 10,000 cases initially ($P_0$), use logarithms to find out approximately how many days it will take for cases to drop below 100. (Given $\log 0.8 = -0.0969$).
-
(Clock/Angles): An automated telescope needs to align with a star tracking algorithm at exactly 8:15 PM. To ensure exact calibration, the software calculates the interior angle between the hour and minute hands of an analog clock at 8:15. What is this analytical angle?
-
(Calendar/Calculation): The historical independence day of a certain nation was celebrated on July 4, 1776. By counting the number of odd days starting from 0001 AD, determine the exact day of the week this event occurred.
-
(Time & Work): A construction project requires a bridge to be built. Company A can build it in 45 days. Company B can build it in 60 days. An external supervisor is tracking this project using project management software. If both companies work together for 12 days, what fraction of the work remains for the supervisor to allocate to a third company?
Answers to Competency-Based Questions
1. Application/Analysis:
- $105 = 64 + 32 + 8 + 1 = 2^6 + 2^5 + 2^3 + 2^0 \implies 1101001_2$.
- $1001011_2 = 1(64) + 0(32) + 0(16) + 1(8) + 0(4) + 1(2) + 1(1) = 64 + 8 + 2 + 1 = 75$ minutes.
2. Logarithms in Real Life: $$ 100 = 10000(0.8)^t \implies 0.01 = 0.8^t $$ Taking log on both sides: $$ \log(0.01) = t \log(0.8) \implies -2 = t(-0.0969) $$ $$ t = \frac{2}{0.0969} \approx 20.64 \text{ days} $$
3. Clock/Angles: At 8:15, $H=8$ and $M=15$. $$ \theta = |30(8) - 5.5(15)| = |240 - 82.5| = 157.5^\circ $$
4. Calendar/Calculation: Total Odd Days up to 1775:
- 1600 years = $0$ odd days.
- 100 years = $5$ odd days.
- 75 years = 18 leap years + 57 ordinary years = $(18 \times 2) + (57 \times 1) = 36 + 57 = 93 \equiv 2$ odd days. Odd days in 1776 up to July 4 (1776 is leap):
- Jan(3) + Feb(1) + Mar(3) + Apr(2) + May(3) + Jun(2) + Jul(4) = $18 \equiv 4$ odd days.
- Total $= 5 + 2 + 4 = 11 \equiv 4$ odd days. 0=Sun, 1=Mon, 2=Tue, 3=Wed, 4=Thu. Thursday.
5. Time & Work: Work done by A and B in 1 day $= \frac{1}{45} + \frac{1}{60} = \frac{4+3}{180} = \frac{7}{180}$. Work done in 12 days $= 12 \times \frac{7}{180} = \frac{7}{15}$. Fraction of work remaining $= 1 - \frac{7}{15} = \frac{8}{15}$.
Unit 2: Algebra
Algebra focuses on abstract mathematical structures and relationships. This unit covers Sets, Relations, Sequences & Series, and Permutations & Combinations.
1. Sets
A set is a well-defined collection of distinct objects. Objects in a set are called elements.
Representation of Sets
- Roster Form: Listing all elements inside braces, e.g., $A = {1, 2, 3, 4, 5}$.
- Set-Builder Form: Defining properties of elements, e.g., $A = {x : x \text{ is a natural number and } x \leq 5}$.
Types of Sets
- Empty Set/Null Set: A set with no elements, denoted by $\emptyset$ or ${}$.
- Singleton Set: A set with a single element.
- Finite and Infinite Sets: Sets with a countable or uncountable number of elements.
- Equal Sets: Two sets with the exact same elements.
Operations on Sets and Venn Diagrams
Venn diagrams visually represent relationships between sets.
Fig 2.1: Venn Diagram showing Intersection of two sets A and B (A ∩ B)
- Union ($A \cup B$): Elements in A or B or both.
- Intersection ($A \cap B$): Elements common to A and B.
- Difference ($A - B$): Elements in A but not in B.
- Complement ($A’$): Elements in Universal set but not in A.
- De Morgan’s Laws: $(A \cup B)’ = A’ \cap B’$ and $(A \cap B)’ = A’ \cup B’$.
2. Relations
Cartesian Product
For two non-empty sets $A$ and $B$, the Cartesian product $A \times B$ is the set of all ordered pairs $(a, b)$ where $a \in A$ and $b \in B$. $$ A \times B = {(a,b) : a \in A \text{ and } b \in B} $$
Relations
A relation $R$ from $A$ to $B$ is a subset of $A \times B$.
- Domain: Set of all first elements of ordered pairs in $R$.
- Range: Set of all second elements of ordered pairs in $R$.
3. Sequences and Series
A sequence is an ordered list of numbers. A series is the sum of a sequence.
Arithmetic Progression (A.P.)
A sequence where the difference between consecutive terms is constant ($d$).
- $n^{\text{th}}$ term: $t_n = a + (n - 1)d$
- Sum of $n$ terms: $S_n = \frac{n}{2} [2a + (n - 1)d]$
- Arithmetic Mean (AM) of $a$ and $b$ is $\frac{a+b}{2}$.
Geometric Progression (G.P.)
A sequence where the ratio of consecutive terms is constant ($r$).
- $n^{\text{th}}$ term: $t_n = a r^{n-1}$
- Sum of $n$ terms: $$ S_n = \frac{a(r^n - 1)}{r - 1} $$ (for $r \neq 1$)
- Sum of infinite G.P. ($|r| < 1$): $S_\infty = \frac{a}{1 - r}$
- Geometric Mean (GM) of $a$ and $b$ is $\sqrt{ab}$.
Relationship: For any two positive numbers, $\text{AM} \geq \text{GM}$.
4. Permutations and Combinations
Factorial
$n! = n \times (n-1) \times (n-2) \times \dots \times 1$.
Fundamental Principle of Counting
If one event can occur in $m$ different ways and another event can occur in $n$ different ways, then both events can occur in $m \times n$ ways.
Permutation (Arrangement)
The number of ways to arrange $r$ objects out of $n$ distinct objects, where order matters: $$ ^nP_r = \frac{n!}{(n-r)!} $$
Combination (Selection)
The number of ways to select $r$ objects from $n$ distinct objects, where order does not matter: $$ ^nC_r = \frac{n!}{r!(n-r)!} $$
Competency-Based Questions
-
(Sets Application): In a software company, 120 engineers are skilled in Java, 85 are skilled in Python, and 45 are skilled in both. If the total number of engineers is 200, find the number of engineers who do not know either Java or Python using Venn diagrams.
-
(A.P. & G.P. Models): The spread of a computer virus in a network doubles every hour. If initially 3 computers were infected, model this spread as a sequence. Calculate how many computers will be infected by the 10th hour. Is this an Arithmetic or Geometric Progression?
-
(Permutation): A database requires a password of exactly 6 characters using uppercase letters (A-Z) and digits (0-9). If characters cannot be repeated and the password must start with a letter, how many such passwords can be generated?
-
(Relations Application): Let $A = {1, 2, 3}$ and $B = {2, 4, 6}$. A relation $R$ from $A$ to $B$ is defined by $R = {(x, y) : x \in A, y \in B \text{ and } 2x = y}$. Find the domain and range of the relation $R$.
-
(Combination): An IT networking committee of 5 members is to be formed from 8 network architects and 6 security specialists. In how many ways can this committee be formed if it must include exactly 2 security specialists?
Answers to Competency-Based Questions
1. Sets Application: Let the total engineers be $U$ ($n(U) = 200$), Java be $J$, and Python be $P$. We know $n(J)=120$, $n(P)=85$, $n(J \cap P)=45$. Number of engineers knowing at least one: $$ n(J \cup P) = 120 + 85 - 45 = 160 $$ Engineers who know neither: $$ n((J \cup P)’) = 200 - 160 = 40 \text{ engineers} $$
2. A.P. & G.P. Models: The sequence doubles, making it a Geometric Progression. Initial amount ($a$) = 3. Common ratio ($r$) = 2. At the $t^{\text{th}}$ hour, there have been exactly $t$ multiplications. So, for the 10th hour, term $= a \cdot r^{10}$. $$ N_{10} = 3 \times 2^{10} = 3 \times 1024 = 3072 \text{ computers} $$
3. Permutation:
- 1st character must be a letter: $26$ options.
- The remaining 5 characters are chosen from the remaining $25$ letters + $10$ digits $= 35$ characters available.
- Order matters, therefore we use permutations for the remaining characters: $^{35}P_5$. $$ \text{Total Passwords} = 26 \times ^{35}P_5 = 26 \times 38,955,840 = 1,012,851,840 $$
4. Relations Application: A relation $R$ from $A$ to $B$ defined by $2x=y$: Elements of $A: {1,2,3}$.
- $x=1 \implies y=2 \in B$
- $x=2 \implies y=4 \in B$
- $x=3 \implies y=6 \in B$ Relation $R = {(1,2), (2,4), (3,6)}$. Domain: ${1, 2, 3}$. Range: ${2, 4, 6}$.
5. Combination: Select 2 security specialists from 6: $^6C_2$. Select the remaining 3 networking architects from 8: $^8C_3$. $$ \text{Total Ways} = ^6C_2 \times ^8C_3 = \left(\frac{6 \times 5}{2}\right) \times \left(\frac{8 \times 7 \times 6}{3 \times 2}\right) = 15 \times 56 = 840 \text{ ways} $$
Unit 3: Mathematical Reasoning
Mathematical Reasoning involves taking a given set of facts and using logic to draw conclusions. These logical frameworks are critical for algorithm design, data analysis, and general problem-solving.
1. Odd Man Out
Odd Man Out is the process of identifying a given series or group of elements and locating the one element that doesn’t share the common characteristics of the rest.
Key Strategies
- Look for mathematical patterns (primes, squares, cubes, multiples).
- Check alphabetical patterns (vowels/consonants, skip sequences).
- Observe physical or conceptual attributes.
Example: Find the odd one out: $5, 7, 11, 13, 15, 17$ Solution: $15$. All other numbers are prime numbers, whereas $15$ is a composite number ($3 \times 5$).
2. Syllogism
A Syllogism is a form of deductive reasoning where a conclusion is drawn from two or more given premises. Venn diagrams are frequently used to solve syllogisms accurately.
Example Premises:
- All computers are machines.
- All machines require power.
Conclusion: Therefore, all computers require power.
Fig 3.1: Syllogism Venn Diagram Representation
Common Patterns
- All A are B: Represents A as a subset of B.
- Some A are B: Represents an intersection between A and B.
- No A are B: Represents disjoint sets A and B.
3. Blood Relations
Blood Relation problems test the ability to understand genealogical structures and the relationships between family members based on specific clues.
Family Tree Mapping
To accurately represent relations, construct a family tree:
- Use horizontal lines
—for siblings. - Use vertical lines
|for parent-child relationships. - Use a
+sign for male, and-sign for female (or squares/circles). - Use a
=sign for a married couple.
Example Problem: A says, “B is the father of my sister’s son.” How is B related to A? Solution: A’s sister’s son = A’s nephew. The father of A’s nephew is A’s sister’s husband. Therefore, B is A’s brother-in-law.
4. Coding Decoding
Coding is a method of encrypting a word or number based on a specific set of rules. Decoding is the process of reverting the encrypted format back to the original based on the same rules.
Common Techniques
- Letter Shifting: Shifting each letter forward or backward by a specific value (e.g., A $\to$ C, B $\to$ D).
- Position Value: Mapping letters to their numerical positions in the alphabet (A=1, B=2, Z=26) and applying arithmetic operations.
- Substitution: Replacing a word with another word or a symbol unconditionally.
Example Problem:
If CPU is coded as D QV, how will RAM be coded?
Solution:
C + 1 = D
P + 1 = Q
U + 1 = V
Therefore, applying the same logic: R + 1 = S, A + 1 = B, M + 1 = N.
The code for RAM is SBN.
Competency-Based Questions
-
(Odd Man Out): Considering binary patterns in computer science, which of these numbers is the odd man out in decimal form: $2, 4, 8, 16, 24, 32$? Justify your reasoning mathematically.
-
(Syllogism Analysis): Premise 1: No algorithms are hardware. Premise 2: All CPUs are hardware. Draw a Venn diagram to determine if the conclusion “No CPUs are algorithms” is logically valid.
-
(Blood Relations Logic): In a database representing a digital family tree structure, Entity $X$ is logged as the mother of the father of Entity $Y$’s sister. How is Entity $X$ related to Entity $Y$?
-
(Coding / Cryptography): A basic encryption algorithm shifts the letters of the alphabet backward by 3 places (i.e., D becomes A, E becomes B, etc.). An intercepted network packet contains the ciphertext
ZHOFRPH. Decode this ciphertext to reveal the original message. -
(Composite Reasoning): A company employs 5 people: A, B, C, D, E. B is the brother of A. C is the father of B. D is the sister of E. E is the daughter of A. Based on these relationships, create a family tree and determine how D is related to C. Additionally, if you were to assign sequential employee IDs based on age (oldest first), what logical assumptions must you make?
Answers to Competency-Based Questions
1. Odd Man Out: The sequence is ${2, 4, 8, 16, 24, 32}$. Mathematically, $2=2^1$, $4=2^2$, $8=2^3$, $16=2^4$, and $32=2^5$. All these are pure powers of $2$. $24$ is mathematically $8 \times 3$, which is not a pure power of $2$. Therefore, 24 is the odd man out.
2. Syllogism Analysis: Let $U$ be the universal set of all objects.
- $H$ = set of Hardware.
- $A$ = set of Algorithms.
- $C$ = set of CPUs. Premises state: $A \cap H = \emptyset$ (No algorithms are hardware) and $C \subseteq H$ (All CPUs are hardware). Since all elements of $C$ are in $H$, and $H$ shares no elements with $A$, it must be that $C$ shares no elements with $A$ ($C \cap A = \emptyset$). Thus, “No CPUs are algorithms” is logically valid.
3. Blood Relations Logic:
- Entity $Y$’s sister shares the same father as $Y$. Let this father be $F$.
- The mother of $F$ is logged as Entity $X$.
- Since $F$ is the father of $Y$, $X$ is the mother of $Y$’s father. Therefore, $X$ is the paternal grandmother of $Y$.
4. Coding / Cryptography:
If shifting backward by 3 places encrypts the data (meaning Decryption requires a forward shift of +3), then treating ZHOFRPH with +3 yields CKRIUSK, which has no meaning.
Instead, observe standard Caeser shifts: the ciphertext ZHOFRPH when shifted backward by 3 places (Z-3=W, H-3=E, O-3=L, F-3=C, R-3=O, P-3=M, H-3=E) yields WELCOME.
Thus, the encryption shifted the original message forward, and the decoding rule is a backward shift of 3. Code: WELCOME.
5. Composite Reasoning:
- $C$ is the father of $B$. $B$ is the brother of $A$. So, $C$ is the father of both $A$ and $B$.
- $E$ is the daughter of $A$. $D$ is the sister of $E$. So, $D$ is the daughter of $A$.
- Since $D$ is the daughter of $A$, and $C$ is the father of $A$, $D$ is the granddaughter of $C$.
- Assumptions for Age IDs: To assign age-based IDs, you must logically assume that parents are strictly older than their children ($C > A, B$ and $A > D, E$). You must also assume or require external data to tie-break between siblings ($A$ vs $B$, and $D$ vs $E$), as the family tree alone does not determine sibling seniority.
Unit 4: Calculus
Calculus is the mathematical study of continuous change. It provides the foundation for determining rates of change and finding optimal solutions.
1. Functions
A function is a relationship or rule that links an input variable to an output variable such that each input has exactly one output. If $y = f(x)$, $x$ is the independent variable and $y$ is the dependent variable.
Domain and Range
- Domain: The set of all possible input values ($x$) for which the function is defined.
- Range: The set of all possible resulting output values ($y$) of the dependent variable.
- Co-domain: The set from which the dependent variable takes its values. Range is a subset of the co-domain.
Types of Functions
- Constant Function: $f(x) = c$
- Identity Function: $f(x) = x$
- Polynomial Function: $f(x) = a_n x^n + \dots + a_1 x + a_0$
- Rational Function: $f(x) = \frac{p(x)}{q(x)}$, where $q(x) \neq 0$
- Exponential Function: $f(x) = a^x$ where $a > 0, a \neq 1$
- Logarithmic Function: $f(x) = \log_a x$
- Modulus Function: $f(x) = |x|$
Fig 4.1: Example of a Parabolic / Polynomial Function Graph
2. Limits and Continuity
Limit of a Function
The limit of a function $f(x)$ as $x$ approaches $a$ is the value that $f(x)$ approaches as $x \to a$. $$ \lim_{x \to a} f(x) = L $$ For a limit to exist, the Left Hand Limit (LHL) must equal the Right Hand Limit (RHL): $$ \lim_{x \to a^-} f(x) = \lim_{x \to a^+} f(x) = L $$
Continuity
A function $f(x)$ is continuous at $x = a$ if:
- $f(a)$ is defined.
- The limit exists at $a$.
- The limit equals the function’s value: $$ \lim_{x \to a} f(x) = f(a) $$
3. Instantaneous Rate of Change
The rate of change measures how one variable changes relative to another. The instantaneous rate of change is the rate at a specific analytical instant, given by the ratio: $$ \lim_{\Delta x \to 0} \frac{f(x + \Delta x) - f(x)}{\Delta x} $$ This fundamental concept leads to differentiation.
4. Differentiation
Differentiation is the process of finding the derivative. We study non-trigonometric derivatives.
Common Derivatives
- Power Rule: $\frac{d}{dx} (x^n) = n x^{n-1}$
- Exponential: $\frac{d}{dx} (e^x) = e^x$
- Logarithmic: $\frac{d}{dx} (\ln x) = \frac{1}{x}$
- Constant: $\frac{d}{dx} (c) = 0$
Rules of Differentiation
Let $u$ and $v$ be functions of $x$:
- Sum Rule: $\frac{d}{dx} (u + v) = \frac{du}{dx} + \frac{dv}{dx}$
- Product Rule: $\frac{d}{dx} (uv) = u \frac{dv}{dx} + v \frac{du}{dx}$
- Quotient Rule: $\frac{d}{dx} \left(\frac{u}{v}\right) = \frac{v \frac{du}{dx} - u \frac{dv}{dx}}{v^2}$
Chain Rule
Used for differentiating composite functions. If $y = f(u)$ and $u = g(x)$, then: $$ \frac{dy}{dx} = \frac{dy}{du} \cdot \frac{du}{dx} $$
Example: Find the derivative of $y = (x^2 + 3)^4$. Using Chain Rule, let $u = x^2 + 3$, so $y = u^4$. $\frac{dy}{du} = 4u^3$ and $\frac{du}{dx} = 2x$. $$ \frac{dy}{dx} = 4(x^2 + 3)^3 \cdot 2x = 8x(x^2 + 3)^3 $$
Competency-Based Questions
-
(Domain/Range Application): A software algorithm logs system temperature $T$ (in Celsius) as a function of processing load $x$ (in Gigahertz) modeled by $T(x) = \frac{100}{x-3}$. What is the practical domain of this function, assuming processing load cannot be negative but must avoid critical failure at $x=3$?
-
(Limits & Continuity): In analyzing network latency limits, a server’s response time $R(t)$ follows the rule $R(t) = \frac{t^2 - 4}{t - 2}$ when $t \neq 2$, and $R(2) = k$. What must be the value of $k$ for the response time function to be continuous at $t = 2$ milliseconds?
-
(Differentiation in Economics): A tech company models its profit function $P(x)$ based on the sale of thousands of units of newly embedded systems as $P(x) = 50x - 2x^2$ (in millions of rupees). Using differentiation, find the instantaneous rate of change of profit when exactly 10,000 units are sold ($x = 10$).
-
(Chain Rule Usage): In machine learning, a loss function $L$ needs optimization. If $L = \ln(3x^2 + 2x + 1)$, find $\frac{dL}{dx}$ which represents the algorithmic gradient.
-
(Rate of Change): A bacterial population $B$ in a laboratory experiment increases according to the equation $B(t) = 500 e^{0.02t}$, where $t$ is time in hours. Find the instantaneous rate of growth of the population at the 50th hour.
Answers to Competency-Based Questions
1. Domain/Range Application: The function is $T(x) = \frac{100}{x-3}$. Since the processing load cannot be negative, $x \ge 0$. Since critical failure happens at $x = 3$, $x \neq 3$. Thus, the practical domain is all non-negative real numbers excluding $3$: $$ x \in [0, 3) \cup (3, \infty) $$
2. Limits & Continuity: For $R(t)$ to be continuous at $t = 2$, the limit as $t \to 2$ must equal $R(2)$. $$ \lim_{t \to 2} \frac{t^2 - 4}{t - 2} = \lim_{t \to 2} \frac{(t-2)(t+2)}{t-2} = \lim_{t \to 2} (t+2) = 2 + 2 = 4 $$ Therefore, the value of $k$ must be $4$ milliseconds.
3. Differentiation in Economics: The profit function is $P(x) = 50x - 2x^2$. The instantaneous rate of change is the derivative $P’(x)$: $$ P’(x) = \frac{d}{dx}(50x - 2x^2) = 50 - 4x $$ At $x = 10$ (representing 10,000 units): $$ P’(10) = 50 - 4(10) = 50 - 40 = 10 $$ The profit is increasing at an instantaneous rate of $10$ million rupees per thousand units sold.
4. Chain Rule Usage: Let $L(x) = \ln(3x^2 + 2x + 1)$. Using the Chain Rule where $u = 3x^2 + 2x + 1$ and $L = \ln u$: $$ \frac{dL}{dx} = \frac{dL}{du} \cdot \frac{du}{dx} = \frac{1}{u} \cdot \frac{d}{dx}(3x^2 + 2x + 1) $$ $$ \frac{dL}{dx} = \frac{1}{3x^2 + 2x + 1} \cdot (6x + 2) = \frac{6x + 2}{3x^2 + 2x + 1} $$
5. Rate of Change: The population function is $B(t) = 500 e^{0.02t}$. The instantaneous rate of growth is the derivative $B’(t)$: $$ B’(t) = 500 \cdot (0.02) \cdot e^{0.02t} = 10 e^{0.02t} $$ At the 50th hour ($t = 50$): $$ B’(50) = 10 e^{0.02(50)} = 10 e^1 = 10e $$ Using $e \approx 2.718$, the growth rate is approximately $27.18$ bacteria per hour.
Unit 5: Probability
Probability provides a quantitative measure of certainty and uncertainty. It is widely applied in determining insurance premiums, weather forecasting, financial risk modeling, and modern machine learning algorithms.
1. Introduction to Probability
The probability of an event $E$ occurring is the ratio of the number of favorable outcomes to the total number of possible outcomes in an experiment. $$ P(E) = \frac{\text{Number of favorable outcomes}}{\text{Total number of possible outcomes}} $$
For any event $E$, $0 \leq P(E) \leq 1$. The sum of all possible probabilities in an experiment is 1.
2. Random Experiment and Sample Space
Random Experiment
An experiment where all possible outcomes are known in advance, but the exact outcome of a specific performance cannot be predicted. Example: Tossing a coin or rolling a die.
Sample Space
The set of all possible outcomes of a random experiment. Denoted by $S$. Example: For tossing two coins, the Sample Space $S = {HH, HT, TH, TT}$.
3. Event
An event is any subset of the sample space $S$.
Types of Events
- Impossible Event: An event that cannot happen (probability = 0).
- Sure Event: An event that is certain to happen (probability = 1).
- Mutually Exclusive Events: Two events $A$ and $B$ that cannot occur simultaneously. $P(A \cap B) = 0$.
- Exhaustive Events: A set of events whose union forms the entire sample space.
- Independent Events: The occurrence of one event does not affect the probability of the other. $P(A \cap B) = P(A) \cdot P(B)$.
- Dependent Events: The occurrence of one event affects the probability of the other.
4. Conditional Probability
Conditional Probability is the probability of an event $E$ occurring, given that another event $F$ has already occurred. $$ P(E|F) = \frac{P(E \cap F)}{P(F)}, \quad \text{provided } P(F) \neq 0 $$
Important Notes
- If $E$ and $F$ are independent, $P(E|F) = P(E)$.
- The formula can be rearranged as $P(E \cap F) = P(F) \cdot P(E|F)$, known as the Multiplication Theorem on Probability.
Competency-Based Questions
-
(Application in Data Storage): A cloud server database consists of 1,000 sectors. 5% of these are marked as ‘corrupted’. A diagnostic script checks a random sector. What is the probability that the chosen sector is NOT corrupted?
-
(Mutually Exclusive Events Analysis): An insurance firm analyzes policies. Let $A$ be the event that a policyholder claims an auto accident, and $B$ be the event they claim house fire damage. Data shows $P(A) = 0.12$, $P(B) = 0.05$. If these events are mutually exclusive, what is the probability a holder will claim either auto or house damage ($P(A \cup B)$)? Can a person claim both simultaneously according to your model?
-
(Conditional Probability in Algorithm): A spam-filtering algorithm flags emails. The probability that an email contains the word “Lottery” (Event F) is 0.05. The probability that an email is marked as spam AND contains the word “Lottery” (Event $E \cap F$) is 0.045. If an incoming email contains the word “Lottery”, what is the conditional probability that it is spam?
-
(Sample Space Modeling): List the complete sample space $S$ for rolling two 6-sided dice simultaneously. Define an event $G$ such that the sum of the dice is greater than or equal to 10. Calculate $P(G)$.
-
(Independent Events in Finance): The probability of Stock $X$ going up tomorrow is 0.6. The probability of Stock $Y$ going up tomorrow is 0.7. If the movements of these two stocks are completely independent, calculate the probability that:
- Both stocks go up.
- At least one stock goes up.
Answers to Competency-Based Questions
1. Application in Data Storage: The probability a sector is corrupted $P(C) = 0.05$. The probability it is NOT corrupted is the complement: $$ P(C’) = 1 - P(C) = 1 - 0.05 = 0.95 , (\text{or } 95%) $$
2. Mutually Exclusive Events Analysis: For mutually exclusive events, $P(A \cap B) = 0$. The probability of claiming either is: $$ P(A \cup B) = P(A) + P(B) = 0.12 + 0.05 = 0.17 $$ No, a person cannot claim both simultaneously in this model because the events are mutually exclusive ($P(A \cap B) = 0$).
3. Conditional Probability in Algorithm: Given $P(F) = 0.05$ and $P(E \cap F) = 0.045$. The conditional probability $P(E|F)$: $$ P(E|F) = \frac{P(E \cap F)}{P(F)} = \frac{0.045}{0.05} = 0.9 $$ There is a $90%$ chance the email is spam.
4. Sample Space Modeling: The sample space $S$ for two dice has $6 \times 6 = 36$ total outcomes. $S = {(1,1), (1,2), \dots (6,6)}$. Event $G$ (sum $\ge 10$) $= {(4,6), (5,5), (6,4), (5,6), (6,5), (6,6)}$. Thus, $n(G) = 6$. $$ P(G) = \frac{n(G)}{n(S)} = \frac{6}{36} = \frac{1}{6} $$
5. Independent Events in Finance: Let $P(X) = 0.6$ and $P(Y) = 0.7$. Since they are independent:
- Both stocks go up ($X \cap Y$): $$ P(X \cap Y) = P(X) \cdot P(Y) = 0.6 \times 0.7 = 0.42 $$
- At least one stock goes up ($X \cup Y$): $$ P(X \cup Y) = P(X) + P(Y) - P(X \cap Y) = 0.6 + 0.7 - 0.42 = 1.3 - 0.42 = 0.88 $$
Unit 6: Descriptive Statistics
Descriptive Statistics summarizes and organizes data so it can be easily understood. Unlike inferential statistics, which uses samples to make predictions about populations, descriptive statistics merely describes the data at hand.
1. Measure of Dispersion
Dispersion measures the variation or spread of data in a given dataset. Common measures include:
Range
The difference between the highest and lowest values in a dataset. $$ \text{Range} = \text{Maximum Value} - \text{Minimum Value} $$
Quartile Deviation
Describes the spread of the middle 50% of data. $$ \text{Quartile Deviation (QD)} = \frac{Q_3 - Q_1}{2} $$ Where $Q_1$ is the first quartile (25th percentile) and $Q_3$ is the third quartile (75th percentile).
Mean Deviation
The average of the absolute differences between each data point and the mean (or median). $$ \text{Mean Deviation about Mean (MD)} = \frac{\sum |x_i - \bar{x}|}{N} $$
Standard Deviation and Variance
Standard deviation ($\sigma$) is the most widely used measure of dispersion. It squares the deviations to avoid negative signs, averages them (variance), and takes the square root. $$ \text{Variance } (\sigma^2) = \frac{\sum (x_i - \bar{x})^2}{N} $$ $$ \text{Standard Deviation } (\sigma) = \sqrt{\frac{\sum (x_i - \bar{x})^2}{N}} $$
2. Percentile Rank
Percentile Rank describes the percentage of values mathematically lower than a given score. $$ \text{Percentile Rank} = \left( \frac{\text{Number of values below } x}{N} \right) \times 100 $$
Example: If a student scores 85 on a test and 80 out of 100 students scored lower than 85, the student is in the 80th percentile.
3. Correlation
Correlation measures the strength and direction of a linear relationship between two variables.
Spearman’s Rank Correlation
When data ranks (instead of raw values) are evaluated, or data is non-parametric, Spearman’s rank correlation ($\rho$ or $r_s$) is used. $$ r_s = 1 - \frac{6 \sum d_i^2}{n(n^2 - 1)} $$ Where:
- $d_i$ = difference between the ranks of corresponding variables.
- $n$ = number of observations.
Interpretation:
- $+1$: Perfect positive correlation.
- $-1$: Perfect negative correlation.
- $0$: No correlation.
Fig 6.1: Scatter plot demonstrating Strong Positive Correlation
Competency-Based Questions
-
(Evaluating Dispersion): Two algorithmic models for predicting stock prices are tested over 10 days. Model A has predictions with a standard deviation of $$1.50$, while Model B has a standard deviation of $$0.20$. Both have the same mean error. Based on the measure of dispersion, which model is more reliable for trading and why?
-
(Standard Deviation Calculation): A server farm records the following ping times (in ms) for 5 requests: $45, 50, 48, 52, 55$. Calculate the variance and standard deviation of these ping times to determine internal network consistency.
-
(Percentile Rank Interpretation): In a data structure consisting of 5,000 algorithmic runtimes, a specific quick-sort operation took 12 seconds. If exactly 4,200 operations took shorter than 12 seconds, what is the percentile rank of this sorting operation? Interpret this result.
-
(Spearman’s Rank Correlation): A psychologist evaluates 6 patients on two different psychological scales (A and B). Their ranks are as follows:
- Patient 1: Rank A=1, Rank B=2
- Patient 2: Rank A=2, Rank B=1
- Patient 3: Rank A=3, Rank B=4
- Patient 4: Rank A=4, Rank B=3
- Patient 5: Rank A=5, Rank B=5
- Patient 6: Rank A=6, Rank B=6 Calculate Spearman’s rank correlation coefficient and state if the relationship is positive or negative.
-
(Comparing Measure of Dispersion): Differentiate between Quartile Deviation and Standard Deviation in terms of how they handle extreme outliers in a large economic dataset. Which one would you prefer if a dataset had heavy outliers?
Answers to Competency-Based Questions
1. Evaluating Dispersion: Model B is more reliable. A lower standard deviation ($ $0.20 $ vs $ $1.50 $) means Model B’s predictions are consistently closer to its mean error, indicating far less volatility and tighter precision on average.
2. Standard Deviation Calculation: Times: $45, 50, 48, 52, 55$. Mean $\bar{x} = \frac{45+50+48+52+55}{5} = \frac{250}{5} = 50$. Deviations ($x_i - \bar{x}$): $-5, 0, -2, 2, 5$. Squared deviations: $25, 0, 4, 4, 25$. Sum of squares $= 58$.
- Variance ($\sigma^2$) $= \frac{58}{5} = 11.6$
- Standard Deviation ($\sigma$) $= \sqrt{11.6} \approx 3.41$ ms.
3. Percentile Rank Interpretation: $$ \text{Percentile Rank} = \left( \frac{4200}{5000} \right) \times 100 = 84% $$ Interpretation: The 12-second sorting time sits at the 84th percentile. This means it took longer to run than $84%$ of all recorded operations (it is in the slower subset of occurrences).
4. Spearman’s Rank Correlation: Differences ($d_i$):
- $d_1 = 1-2 = -1 \implies d_1^2 = 1$
- $d_2 = 2-1 = 1 \implies d_2^2 = 1$
- $d_3 = 3-4 = -1 \implies d_3^2 = 1$
- $d_4 = 4-3 = 1 \implies d_4^2 = 1$
- $d_5 = 5-5 = 0 \implies d_5^2 = 0$
- $d_6 = 6-6 = 0 \implies d_6^2 = 0$ Sum $\sum d_i^2 = 4$. $n = 6$. $$ r_s = 1 - \frac{6 \times 4}{6(6^2 - 1)} = 1 - \frac{24}{6 \times 35} = 1 - \frac{24}{210} \approx 1 - 0.114 = 0.886 $$ Since $r_s > 0$, the scales show a Strong Positive Correlation.
5. Comparing Measure of Dispersion: Standard Deviation calculates squared distances from the mean for all points, meaning extreme outliers disproportionately inflate the result. Quartile Deviation solely measures the spread of the middle 50% of the data ($Q_3$ to $Q_1$), effectively ignoring extreme high or low tails. If a dataset has heavy outliers, Quartile Deviation is generally preferred as it is a more robust indicator of centralized spread.
Unit 7: Financial Mathematics
Financial Mathematics applies quantitative methods to financial problems. It is essential for banking, investing, taxation, and economic modeling.
1. Interest and Interest Rates
Interest is the cost of borrowing money or the return on an investment.
Simple Interest (SI)
Calculated only on the principal amount. $$ \text{SI} = \frac{P \times R \times T}{100} $$ Where $P$ = Principal, $R$ = Rate of Interest per annum, $T$ = Time in years.
Compound Interest (CI)
Calculated on the principal and the accumulated interest of previous periods. $$ A = P \left(1 + \frac{r}{100}\right)^n $$ $$ \text{CI} = A - P $$ Where $A$ = Amount, $r$ = Rate per compounding period, $n$ = Total number of periods.
Effective Rate of Interest
The true annual interest rate considering the effect of compounding. $$ E = \left(1 + \frac{i}{n}\right)^n - 1 $$ Where $i$ = Nominal interest rate, $n$ = Number of compounding periods per year.
2. Annuities
An annuity is a series of equal payments made at regular intervals.
Regular Annuity
Payments are made at the end of each period. Future Value of a Regular Annuity ($FV$): $$ FV = C \times \left[ \frac{(1 + i)^n - 1}{i} \right] $$ Where $C$ = Cash flow per period, $i$ = Interest rate per period, $n$ = Number of periods.
(Note: Simple applications up to 3 periods only are expected).
3. Taxation
Taxes are mandatory contributions levied on individuals or corporations by the government.
Goods and Services Tax (GST)
An indirect tax used in India on the supply of goods and services.
- CGST: Central GST (varies by state/center split).
- SGST: State GST.
- IGST: Integrated GST (inter-state transactions).
$$ \text{Tax Amount} = \text{Base Price} \times \left( \frac{\text{Rate}}{100} \right) $$
Income Tax
Computed by adding income from various sources (salary, house property, business, capital gain, etc.) and deducting allowances defined under the Income Tax Act (PF, PPF, LIC, Housing loan, etc.). $$ \text{Taxable Income} = \text{Gross Income} - \text{Deductions} $$ Income tax is calculated based on predefined tax slabs.
4. Utility Bills
The calculation of utility bills involves evaluating fixed charges and variable usage.
Electricity and Water Bills
- Tariff Rates: Depending on user brackets (residential, commercial).
- Fixed Charge: A mandatory stationary fee regardless of usage.
- Service Charge/Surcharge: Extra percentage added to the main cost or specific service fees.
$$ \text{Total Bill} = \text{Fixed Charge} + (\text{Units Consumed} \times \text{Rate per Unit}) + \text{Taxes/Surcharges} $$
Competency-Based Questions
-
(Simple vs. Compound Trade-off): A business wants to borrow ₹500,000 for 3 years. Bank A offers 6.5% Simple Interest. Bank B offers 6.2% Compound Interest compounded annually. By calculating the total interest for both loans, which bank offers the lower cost of borrowing?
-
(Annuity Application): A software engineer decides to invest ₹10,000 at the end of every year into a tech fund that guarantees a return of 5% compounded annually. Using the Regular Annuity formula, calculate the accumulated future value of this investment at the end of exactly 3 years.
-
(GST Computation in E-commerce): A customer buys an electronic CPU online. The base price is ₹15,000. If the GST on electronics is divided equally into 9% CGST and 9% SGST, calculate the total amount the customer pays during checkout.
-
(Income Tax Deduction Logic): An individual has a gross yearly income of ₹1,200,000. They have total deductions of ₹250,000 under sections PF, LIC, and Medical. If the tax slab imposes a 10% rate on taxable income above ₹500,000 (and 0% below), calculate their final income tax liability.
-
(Tariff and Utility Modeling): Model an electricity bill using an algebraic expression where the fixed meter rent is $F$, the first 100 units cost $R_1$ per unit, and units above 100 cost $R_2$ per unit. Write the unified total cost function $C(x)$ for total units consumed $x$, assuming $x > 100$. Evaluate $C(250)$ if $F = ₹50, R_1 = ₹3, R_2 = ₹5$.
Answers to Competency-Based Questions
1. Simple vs. Compound Trade-off: Bank A (Simple Interest): $$ \text{SI} = \frac{500,000 \times 6.5 \times 3}{100} = ₹97,500 $$ Bank B (Compound Interest): $$ A = 500,000 \left(1 + \frac{6.2}{100}\right)^3 = 500,000 (1.062)^3 \approx 500,000(1.19777) = ₹598,885.16 $$ $$ \text{CI} = 598,885.16 - 500,000 = ₹98,885.16 $$ Since $₹97,500 < ₹98,885.16$, Bank A (Simple Interest) offers the lower cost of borrowing.
2. Annuity Application: Using the Future Value of a Regular Annuity formula: $$ FV = 10,000 \times \left[ \frac{(1 + 0.05)^3 - 1}{0.05} \right] $$ $$ FV = 10,000 \times \left[ \frac{(1.157625) - 1}{0.05} \right] = 10,000 \times \left[ \frac{0.157625}{0.05} \right] = 10,000 \times 3.1525 $$ $$ FV = ₹31,525 $$
3. GST Computation in E-commerce: Base Price = ₹15,000. $$ \text{CGST} (9%) = 15,000 \times 0.09 = ₹1,350 $$ $$ \text{SGST} (9%) = 15,000 \times 0.09 = ₹1,350 $$ $$ \text{Total Bill} = 15,000 + 1,350 + 1,350 = ₹17,700 $$
4. Income Tax Deduction Logic: $$ \text{Gross Income} = ₹1,200,000 $$ $$ \text{Taxable Income} = \text{Gross} - \text{Deductions} = 1,200,000 - 250,000 = ₹950,000 $$ Tax is applied only on the amount above ₹500,000: $$ \text{Amount subject to Tax} = 950,000 - 500,000 = ₹450,000 $$ $$ \text{Final Tax Liability} = 10% \text{ of } 450,000 = ₹45,000 $$
5. Tariff and Utility Modeling: The cost function $C(x)$ for an electricity bill when consumption $x > 100$ is modeled algebraically as: $$ C(x) = F + 100 R_1 + (x - 100) R_2 $$ Evaluating $C(250)$ given $F = 50, R_1 = 3, R_2 = 5$: $$ C(250) = 50 + 100(3) + (250 - 100)(5) $$ $$ C(250) = 50 + 300 + 150(5) = 350 + 750 = ₹1,100 $$
Unit 8: Coordinate Geometry
Coordinate geometry (or analytic geometry) is defined as the study of geometry using coordinate systems. It bridges algebra and geometry, allowing geometric shapes to be defined by algebraic equations.
1. Straight Line
A straight line is a set of points extending infinitely in opposite directions.
Gradient (Slope) of a Line
The gradient $m$ of a line passing through $(x_1, y_1)$ and $(x_2, y_2)$ is: $$ m = \frac{y_2 - y_1}{x_2 - x_1} \quad (x_1 \neq x_2) $$
Equations of a Line
- Parallel to Axes: $x = a$ (parallel to y-axis), $y = b$ (parallel to x-axis)
- Point-Slope Form: $y - y_1 = m(x - x_1)$
- Two-Point Form: $y - y_1 = \frac{y_2 - y_1}{x_2 - x_1}(x - x_1)$
- Slope-Intercept Form: $y = mx + c$
- Intercept Form: $\frac{x}{a} + \frac{y}{b} = 1$
Distance from a Point to a Line
The perpendicular distance from $(x_1, y_1)$ to the line $ax + by + c = 0$ is: $$ d = \frac{|a x_1 + b y_1 + c|}{\sqrt{a^2 + b^2}} $$
Distance between Parallel Lines
For $ax + by + c_1 = 0$ and $ax + by + c_2 = 0$: $$ d = \frac{|c_1 - c_2|}{\sqrt{a^2 + b^2}} $$
2. Circle
A circle is the locus of a point moving in a plane such that its distance from a fixed point (center) is constant.
Equations of a Circle
- Standard Form (Center at origin): $x^2 + y^2 = r^2$
- Central Form (Center at $(h, k)$): $(x - h)^2 + (y - k)^2 = r^2$
- Diameter Form: If $(x_1,y_1)$ and $(x_2,y_2)$ are endpoints of a diameter: $$ (x - x_1)(x - x_2) + (y - y_1)(y - y_2) = 0 $$
- General Form: $x^2 + y^2 + 2gx + 2fy + c = 0$
- Center: $(-g, -f)$
- Radius: $r = \sqrt{g^2 + f^2 - c}$
Fig 8.1: Circle in Central Form
3. Parabola
A parabola is the locus of a point whose distance from a fixed point (focus) is equal to its perpendicular distance from a fixed straight line (directrix).
Standard Equations of a Parabola
- Rightward Opening: $y^2 = 4ax$
- Focus: $(a, 0)$
- Directrix: $x = -a$
- Latus Rectum Length: $4a$
- Upward Opening: $x^2 = 4ay$
- Focus: $(0, a)$
- Directrix: $y = -a$
Competency-Based Questions
-
(Application of Straight Lines): An architect is modeling a roof slope linearly using a CAD software. The highest point is at coordinate $(15, 20)$ and the gutter starts at $(5, 8)$. What is the gradient of the roof, and what is its linear equation in slope-intercept form?
-
(Distance Optimization): A new fiber-optic cable is plotted along the line $3x - 4y + 12 = 0$. A server room is located at map coordinates $(2, -1)$. What is the shortest (perpendicular) length of wire required to connect the server room to the fiber route?
-
(Circle Area Analysis): A cell tower’s coverage area on a digital map is given by the equation $x^2 + y^2 - 6x + 8y - 75 = 0$. Determine the coordinates of the cell tower (the center) and the coverage radius.
-
(Parabolic Antennas): Satellite TV dishes are parabolic. If the cross-section of a dish is modeled by the equation $y^2 = 32x$ (measurements in cm), where should the receiver (focus) be placed relative to the vertex to capture the strongest signal?
-
(Economics Demand Curve): A linear demand curve relates price ($y$) and quantity demanded ($x$). At a price of ₹50, 100 units are demanded. At a price of ₹40, 120 units are demanded. Use the Two-Point Form of a straight line to find the demand equation, and predict the demand at a price of ₹25.
Answers to Competency-Based Questions
1. Application of Straight Lines: Gradient $m = \frac{y_2 - y_1}{x_2 - x_1} = \frac{20 - 8}{15 - 5} = \frac{12}{10} = 1.2$. Using point-slope form with point $(5, 8)$: $$ y - 8 = 1.2(x - 5) \implies y = 1.2x - 6 + 8 $$ Linear Equation: $y = 1.2x + 2$.
2. Distance Optimization: Distance $d$ from point $(2, -1)$ to line $3x - 4y + 12 = 0$: $$ d = \frac{|3(2) - 4(-1) + 12|}{\sqrt{3^2 + (-4)^2}} = \frac{|6 + 4 + 12|}{\sqrt{9 + 16}} = \frac{22}{\sqrt{25}} = \frac{22}{5} $$ The shortest length of wire is $4.4$ units.
3. Circle Area Analysis: Comparing $x^2 + y^2 - 6x + 8y - 75 = 0$ with the general form $x^2 + y^2 + 2gx + 2fy + c = 0$:
- $2g = -6 \implies g = -3$
- $2f = 8 \implies f = 4$
- $c = -75$ Center of Tower $(-g, -f) = (3, -4)$. Radius $r = \sqrt{g^2 + f^2 - c} = \sqrt{(-3)^2 + 4^2 - (-75)} = \sqrt{9 + 16 + 75} = \sqrt{100} = \textbf{10 units}$.
4. Parabolic Antennas: The equation is $y^2 = 32x$. This maps to the right-opening parabola standard form $y^2 = 4ax$. $$ 4a = 32 \implies a = 8 $$ The receiver (focus) must be placed at $(a, 0)$, which is $8$ cm directly in front of the vertex of the dish.
5. Economics Demand Curve: Let $(x, y)$ be $(\text{demand}, \text{price})$. Points are $(100, 50)$ and $(120, 40)$. Two-Point Form: $$ y - 50 = \frac{40 - 50}{120 - 100}(x - 100) $$ $$ y - 50 = \frac{-10}{20}(x - 100) = -0.5(x - 100) $$ Demand Equation: $y = -0.5x + 100$. Rearranged for Quantity Given Price ($x$): $$ 0.5x = 100 - y \implies x = 200 - 2y $$ At a price of $y = ₹25$: $$ x = 200 - 2(25) = 200 - 50 = \textbf{150 units demanded} $$