Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • Number System and Arithmetic
  • Algebra
  • Set Theory
  • Probability
  • Statistics
  • Geometry
  • Calculus
  • Logarithms
  • Mensuration
  • Matrices
  • Trigonometry
  • Mathematics
Open In App
Next Article:
Class 11 RD Sharma Solutions- Chapter 16 Permutations - Exercise 16.2 | Set 2
Next article icon

Class 11 RD Sharma Solutions- Chapter 16 Permutations – Exercise 16.2 | Set 1

Last Updated : 08 Dec, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

Question 1.  In a class, there are 27 boys and 14 girls. The teacher wants to select 1 boy and 1 girl to represent the class in a function. In how many ways can the teacher make this selection?

Solution:

Given: Total number of boys = 27

Total number of girls = 14

So, ways to select a boy = 27 P1 = 27 

Ways to select a girl = 14P1 = 14

Ways for selecting a pair of 1 boy, 1 girl = 27 x 14 = 378 

Question 2.  A person wants to buy one fountain pen, one ball pen, and one pencil from a stationery shop. If there are 10 fountain pen varieties, 12 ball pen varieties, and 5 pencil varieties, in how many ways can he select these articles?

Solution:

Given: Total number of fountain pen = 10

Total number of ball pen = 12

Total number of fountain pencil = 5

Person wants to buy only one fountain pen, one ball pen, and one pencil

So, ways to select a pen = 10P1 = 10

Ways to select a ball pen = 12P1 = 12

Ways to select a pencil = 5P1 = 5

Ways for selecting the desired triplet = 10 x 12 x 5 = 600

Question 3. From Goa to Bombay there are two routes; air, and sea. From Bombay to Delhi there are three routes; air, rail, and road. From Goa to Delhi via Bombay, how many kinds of routes are there?  

Solution:

Given: From Goa to Bombay two routes = air, and sea

 From Bombay to Delhi there are three routes = air, rail, and road

So, the routes from Goa to Bombay = 2P1 = 2

Routes from Bombay to Delhi = 3P1 = 3

Total different routes from Goa to Delhi = 2 x 3 = 6  

Question 4. A mint prepares metallic calendars specifying months, dates, and days in the form of monthly sheets (one plate for each month). How many types of calendars should it prepare to serve for all the possibilities in future years?

Solution:

We need to find the different total number of calendars so that all the years can be represented by any one of these. 

Case 1: Leap year

A leap year may start with any of 7 possible days (Monday to Sunday) = 7 options

Case 2: Ordinary year  

An ordinary year may start with any of 7 possible days (Monday to Sunday) = 7 options

Total calendars = 7 + 7 = 14 

Question 5.  There are four parcels and five post-offices. In how many different ways can the parcels be sent by registered post?

Solution:

Given: Total number of parcels = 4

total number of post-offices = 5

Each of the four parcels have 5 options of post-offices. 

So, each parcel can be sent in 5P1 ways. 

Hence, the total ways = 5P1 x 5P1 x 5P1 x 5P1 = 5 x 5 x 5 x 5 = 625

Question 6. A coin is tossed five times, and outcomes are recorded. How many possible outcomes are there?

Solution:

Each toss can result in 2P1 = 2 ways. 

Five tosses = 2 x 2 x 2 x 2 x 2 = 32 ways of outcomes   

Question 7. In how many ways can an examine answer a set of ten true/false type questions?

Solution:

For answering one question: 2 P1 = 2 ways

For answering 10 questions: 2 x 2 x 2 x……2 (10 times) = 210 = 1024 possibilities

Question 8.  A letter lock consists of three rings each marked with 10 different letters. In how many ways it is possible to make an unsuccessful attempt to open the lock?

Solution:

Number of possibilities for a single ring = 10 ways

For 3 rings: 10 x 10 x 10 = 1000 ways 

Out of these, 1 way will be the correct password

So, the number of unsuccessful attempts = 1000 – 1 = 999  

Question 9. There are 6 multiple choice questions in an examination. How many sequences of answers are possible, if the first three questions have 4 choices each and the next three have 2 each?

Solution:

Possible sequences for first 3 questions = 4P1 x 4P1 x 4P1 = 4 x 4 x 4 = 64 

Possible sequences for next 3 questions = 2P1 x 2P1 x 2P1 = 2 x 2 x 2 = 8

Total possibilities = 64 x 8 = 512      

Question 10. There are 5 books on Mathematics and 6 books on Physics in a book shop. In how many ways can a student buy:

(i) a Mathematics book and a Physics book? 

(ii) either a Mathematics book or a Physics book?

Solution:

Given: Total number of Mathematics book = 5

Total number of Physics book = 6

(i) Number of ways of buying Mathematics book = 5P1   = 5 

Number of ways of buying Physics book = 6P1  = 6 

Total possibilities = 5 x 6 = 30

(ii) Number of ways of buying a book (can be any Maths or Physics) = 11 P1 = 11

Question 11. Given 7 flags of different colors, how many different signals can be generated if a signal requires the use of two flags, one below the other?

Solution:

Ways to select 2 flags out of 7 = 7P2 = 7x(7 – 1)/2 = 21

Ways of generating different signals from these 2 selected flags = 2

(say, A and B are the colors selected then A can be above and B below; and vice versa so 2 ways)

Total distinct signals possible = 21 x 2 = 42

Question 12. A team consists of 6 boys and 4 girls, and other has 5 boys and 3 girls. How many single matches can be arranged between the two teams when a boy plays against a boy, and a girl plays against a girl?

Solution:

Case 1: A boy plays against a boy      

Select a boy from team 1 and a boy from team 2

Team 1: 6P1 = 6

Team 2: 5P1 = 5

Total ways of a boy playing against a boy = 6 x 5 = 30

Case 2: A girl plays against a girl      

Select a girl from team 1 and a boy from team 2

Team 1: 4P1 = 4

Team 2: 3P1 = 3

Total ways of a girl playing against a girl = 4 x 3 = 12  

Total ways of signal matches = Ways of boy playing against boy + Ways of girl playing against girl

= 30 + 12

 = 42  

Question 13. Twelve students compete in a race. In how many ways first three prizes be given?

Solution:

Number of ways of selecting 3 winners = 12P3 = 12 x 11 x 10 / (3 x 2 x 1) = 220

For 3 winners selected, different ways of assigning the position

For first position we have 3 possibilities of people,

then for second we have 2 possibilities (other than the one already given first position)  

and for third we have 1 possibility (other than the ones declared second and first positions)

So, 3 x 2 x 1 = 6 possibilities of assigning these 3 positions to the three selected people

Total ways of giving 3 prizes = No. of ways of selecting 3 people x Assigning 3 positions to the 3 people

= 220 x 6

= 1320

Question 14. How many A.P.’s with 10 terms are there whose first term is in the set {1, 2, 3} and whose common difference is in the set {1, 2, 3, 4, 5}?

Solution:

Number of ways of selecting first term = 3P1 = 3

Number of ways of selecting common difference = 5P1 = 5

Total different A.P. series = 3 x 5 = 15  

Question 15. From among the 36 teachers in a college, one principal, one vice-principal and the teacher-in-charge are to be appointed. In how many ways can this be done?

Solution:

Number of ways of selecting 3 people = 36P3

= 36 x 35 x 34 / (3 x 2 x 1)

= 7140

For 3 people selected, different ways of assigning the posts

For the principal post we have 3 possibilities of people,

then for vice-principal post we have 2 possibilities (other than the one already given principal post)  

and for teacher-in-charge we have 1 possibility (other than people declared principal and vice-principal)

So, 3 x 2 x 1 = 6 possibilities of assigning these 3 posts to the three selected people

Total ways of assigning 3 posts = No. of ways of selecting 3 people x Assigning 3 posts to 3 people

= 7140 x 6

= 42840

Question 16. How many three-digit numbers are there with no digit repeated?

Solution:

Ways of selecting 100th place = 9P1 = 9 (Selecting from all digits except 0)

Ways of selecting 10th place = 9P1 = 9 (Selecting from all digits except the digit placed at 100th position)

Ways of selecting unit pace = 8P1 = 8 (Selecting from all digits except those at 100th and 10th places)

Total 3-digit numbers possible with no digit repeated = 9 x 9 x 8 = 648  



Next Article
Class 11 RD Sharma Solutions- Chapter 16 Permutations - Exercise 16.2 | Set 2

S

shubhi18195
Improve
Article Tags :
  • Class 11
  • Mathematics
  • RD Sharma Solutions
  • School Learning
  • Maths-Class-11
  • RD Sharma Class-11

Similar Reads

  • RD Sharma Class 11 Solutions for Maths
    RD Sharma Solutions for Class 11 covers different types of questions with varying difficulty levels. Practising these questions with solutions may ensure that students can do a good practice of all types of questions that can be framed in the examination. This ensures that they excel in their final
    13 min read
  • Chapter 1: Sets

    • Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.1
      Question 1. What is the difference between a collection and a set? Give reasons to support your answer.Solution: A collection represents a group of objects. Whereas well-defined collections are called sets. Only unique elements can be present in a set. Example: The collection of good novels is not a
      4 min read

    • Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.2
      Question 1. Describe the following sets in Roster form: (i) {x : x is a letter before e in the English alphabet} (ii) {x ∈ N: x2 < 25} (iii) {x ∈ N: x is a prime number, 10 < x < 20} (iv) {x ∈ N: x = 2n, n ∈ N} (v) {x ∈ R: x > x} (vi) {x : x is a prime number which is a divisor of 60} (v
      9 min read

    • Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.3
      In Chapter 1 of RD Sharma's Class 11 textbook Sets are one of the foundational topics of mathematics. Exercise 1.3 dives deeper into operations on sets such as the union, intersection, and difference helping students understand these concepts through a variety of problems. This exercise builds a str
      9 min read

    • Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.4 | Set 1
      In this exercise from Chapter 1: Sets of RD Sharma’s Class 11 textbook we delve into the fundamental concepts of set theory a branch of mathematics dealing with the collection of objects called elements into the groups or sets. Exercise 1.4 primarily focuses on understanding various set operations s
      10 min read

    • Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.4 | Set 2
      The Sets are fundamental concepts in mathematics used to group and analyze collections of objects or elements. Chapter 1 of RD Sharma's Class 11 Mathematics textbook delves into the various properties and operations involving sets helping students understand how to manage collections in a structured
      7 min read

    • Class 11 RD Sharma Solutions - Chapter 1 Permutations And Combinations- Exercise 1.5
      In this section, we explore Chapter 1 of the Class 11 RD Sharma textbook, which focuses on Sets. Exercise 1.5 is aimed at strengthening students' understanding of set theory, including various operations and properties associated with sets. Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.
      10 min read

    • Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.6 | Set 1
      Question 1. Find the smallest set A such that A ∪ {1, 2} = {1, 2, 3, 5, 9}. Solution: A ∪ {1, 2} = {1, 2, 3, 5, 9} The union indicates that the summation of elements of both sets should form RHS. Elements of A and {1, 2} together give us the resultant set. Therefore, the smallest set will be, A = {1
      11 min read

    • Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.6 | Set 2
      Exercise 1.6 | Set 2 in RD Sharma's Class 11 mathematics textbook continues the exploration of Mathematical Induction within the broader context of Set Theory. This set builds upon the foundational concepts introduced in Set 1, offering students a more advanced set of problems to tackle. The exercis
      7 min read

    • Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.7
      Question 1: For any two sets A and B, prove that: A‘ – B‘ = B – A Solution: To prove: A’ – B’ = B – A Firstly show that A’ – B’ ⊆ B – A Let, x ∈ A’ – B’ ⇒ x ∈ A’ and x ∉ B’ ⇒ x ∉ A and x ∈ B (since, A ∩ A’ = ϕ) ⇒ x ∈ B – A It is true for all x ∈ A’ – B’ Therefore, A’ – B’ = B – A Hence, Proved. Ques
      6 min read

    • Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.8 | Set 1
      In Chapter 1 of RD Sharma's Class 11 mathematics "Sets" form the foundation of the various mathematical concepts such as relations, functions, and probability. This chapter covers the basics of sets including set theory, types of sets, and operations on sets. Exercise 1.8 specifically tests your und
      8 min read

    • Class 11 RD Sharma Solutions - Chapter 1 Sets - Exercise 1.8 | Set 2
      In this article, we will be going to solve the entire exercise 1.8 of our RD Sharma textbook. A set is a fundamental concept in mathematics that refers to a collection of distinct objects, considered as a whole. These objects can be anything: numbers, letters, symbols, or even other sets. Sets are u
      8 min read

    Chapter 2: Relations

    • Class 11 RD Sharma Solutions - Chapter 2 Relations - Exercise 2.1
      Chapter 2 of RD Sharma's Class 11 Mathematics textbook focuses on Relations. Exercise 2.1 specifically deals with the basic concepts of relations, including their definition, representation, and properties. This exercise helps students understand how relations are used to describe connections betwee
      12 min read

    • Class 11 RD Sharma Solutions - Chapter 2 Relations - Exercise 2.2
      Chapter 2 of RD Sharma's Class 11 Mathematics textbook focuses on "Relations". This chapter is crucial for understanding how different sets are interconnected and lays the foundation for more complex topics like functions, mappings, and equivalence relations. The concepts learned in this chapter are
      11 min read

    • Class 11 RD Sharma Solutions - Chapter 2 Relations - Exercise 2.3 | Set 1
      Question 1. If A = {1, 2, 3}, B = {4, 5, 6}, which of the following are relations from A to B? Give reasons in support of your answer. (i) {(1, 6), (3, 4), (5, 2)} (ii) {(1, 5), (2, 6), (3, 4), (3, 6)} (iii) {(4, 2), (4, 3), (5, 1)} (iv) A × B Solution: Given: A = {1, 2, 3}, B = {4, 5, 6} A × B = {(
      12 min read

    • Class 11 RD Sharma Solutions - Chapter 2 Relations - Exercise 2.3 | Set 2
      In Class 11 Mathematics, understanding the concept of relations is crucial for the mastering functions and other higher-level concepts. The Exercise 2.3 from Chapter 2 of RD Sharma's book focuses on the practical problems involving relations. This article provides a detailed solution set for the Exe
      11 min read

    Chapter 3: Functions

    • Class 11 RD Sharma Solutions - Chapter 3 Functions - Exercise 3.1 | Set 2
      In this article, we will be going to solve the entire exercise 3.1 of our NCERT textbook. Functions are fundamental concepts in mathematics that describe relationships between sets of elements. They provide a way to map or associate each element from one set (the domain) to exactly one element in an
      7 min read

    • Class 11 RD Sharma Solutions - Chapter 3 Functions - Exercise 3.1 | Set 1
      Question 1. Define a function as a set of ordered pairs.Solution: Let A and B be two non-empty sets. A relation from A to B, i.e., a subset of A×B, is called a function (or a mapping) from A to B, if (i) for each a ∈ A there exists b ∈ B such that (a, b) ∈ f (ii) (a, b) ∈ f and (a, c) ∈ f ⇒ b = c Qu
      10 min read

    • Class 11 RD Sharma Solutions - Chapter 3 Functions - Exercise 3.2
      Question 1. If f(x)=x2-3x+4, then find the values of x satisfying the equation f(x)=f(2x+1). Solution: We have, f(x)=x2-3x+4 Now, f(2x+1)=(2x+1)2-3(2x+1)+4 f(2x+1)=4x2+1+4x-6x-3+4 f(2x+1)=4x2-2x+2 It is given that f(x)=f(2x+1) x2-3x+4=4x2-2x+2 0=4x2-x2-2x+3x+2-4 3x2+x-2=0 3x2+3x-2x-2=0 3x(x+1)-2(x+1
      4 min read

    • Class 11 RD Sharma Solutions - Chapter 3 Functions - Exercise 3.3
      Question 1. Find the domain of each of the following real valued functions of real variable:(i) f (x) = 1/x Solution: We are given, f (x) = 1/x. Here, f (x) is defined for all real values of x, except for the case when x = 0. Therefore, domain of f = R – {0} (ii) f (x) = 1/(x−7) Solution: We are giv
      7 min read

    • Class 11 RD Sharma Solutions - Chapter 3 Functions - Exercise 3.4
      Question 1. Find f + g, f – g, cf (c ∈ R, c ≠ 0), fg, 1/f and f/g in each of the following:(i) f(x) = x3 + 1 and g (x) = x + 1 Solution: Given, f(x) = x3 + 1 and g(x) = x + 1 and f(x): R → R and g(x): R → R We know, (f + g)(x) = f(x) + g(x) ⇒ (f + g) (x) = x3 + 1 + x + 1 = x3 + x + 2 So, (f + g)(x)
      14 min read

    Chapter 4: Measurement of Angles

    • Class 11 RD Sharma Solutions - Chapter 4 Measurement of Angles - Exercise 4.1 | Set 1
      Measurement of angles is a fundamental concept in geometry that deals with quantifying the amount of rotation between two intersecting lines or rays. In Chapter 4 of RD Sharma's Class 11 mathematics textbook, students are introduced to various aspects of angle measurement, including different units
      13 min read

    • Class 11 RD Sharma Solutions - Chapter 4 Measurement of Angles - Exercise 4.1 | Set 2
      Question 11. A rail road curve is to be laid out on a circle. What radius should be used if the track is to change direction by 25o in a distance of 40 meters. Solution: Let AB denote the given rail-road. We are given ∠AOB = 25o. We know 180o = π radians = πc or 1o = (π/180)c Hence 25o = 25 × π/180
      6 min read

    Chapter 5: Trigonometric Functions

    • Class 11 RD Sharma Solutions - Chapter 5 Trigonometric Functions - Exercise 5.1 | Set 1
      Chapter 5 of RD Sharma’s Class 11 Mathematics textbook covers Trigonometric Functions in which form the foundation for understanding trigonometry. This chapter explores the various trigonometric functions and their properties providing the crucial base for higher-level mathematics and applications i
      5 min read

    • Class 11 RD Sharma Solutions - Chapter 5 Trigonometric Functions - Exercise 5.1 | Set 2
      Question 14. Prove that [Tex]\frac{(1+cotθ+tanθ)(sinθ-cosθ)}{sec^3θ-cosec^3θ}=sin^2θcos^2θ [/Tex] Solution: We have [Tex]\frac{(1+cotθ+tanθ)(sinθ-cosθ)}{sec^3θ-cosec^3θ}=sin^2θcos^2θ [/Tex] Taking LHS = [Tex]\frac{(1+cotθ+tanθ)(sinθ-cosθ)}{sec^3θ-cosec^3θ}[/Tex] = [Tex]\frac{(1+\frac{cosθ}{sinθ}+\fr
      7 min read

    • Class 11 RD Sharma Solutions - Chapter 5 Trigonometric Functions - Exercise 5.2
      Question 1. Find the values of the other five trigonometric functions in each of the following:(i) cot x = 12/5, x in quadrant III(ii) cos x = -1/2, x in quadrant II(iii) tan x = 3/4, x in quadrant III(iv) sin x = 3/5, x in quadrant I Solution: (i) cot x = 12/5, x in quadrant III As we knew that tan
      7 min read

    • Class 11 RD Sharma Solutions - Chapter 5 Trigonometric Functions - Exercise 5.3
      Question 1. Find the values of the following trigonometric ratios:(i) sin 5π/3 Solution: We have, sin 5π/3 =sin (2π-π/3) [∵sin(2π-θ)=-sinθ] =-sin(π/3) = - √3/2 (ii) sin 17π Solution: We have, sin 17π ⇒sin 17π=sin (34×π/2) Since, 17π lies in the negative x-axis i.e. between 2nd and 3rd quadrant =sin
      8 min read

    Chapter 6: Graphs of Trigonometric Functions

    • Class 11 RD Sharma Solutions - Chapter 6 Graphs of Trigonometric Functions - Exercise 6.1
      The Graphs of trigonometric functions provide a visual representation of how trigonometric functions behave over different intervals. Understanding these graphs is crucial for solving trigonometric equations and analyzing periodic phenomena. This chapter covers the essential techniques to sketch and
      4 min read

    • Class 11 RD Sharma Solutions - Chapter 6 Graphs of Trigonometric Functions - Exercise 6.2
      Question 1: Sketch the following graphs:(i) y = cos (x+[Tex]\frac{\pi}{4}[/Tex]) Solution: To obtain this graph y-0 = cos (x+[Tex]\frac{\pi}{4} [/Tex]), Shifting the origin at [Tex](-\frac{\pi}{4},0) [/Tex], we have X = x+[Tex]\frac{\pi}{4} [/Tex] and Y = y-0 Substituting these values, we get Y = co
      3 min read

    • Class 11 RD Sharma Solutions - Chapter 6 Graphs of Trigonometric Functions - Exercise 6.3
      Sketch the graphs of the following functions:Question 1: y = sin2 x Solution: As we know that, y = sin2 x = [Tex]\frac{1- cos 2x}{2} = \frac{1}{2} - \frac{cos 2x}{2}[/Tex] [Tex]y - \frac{1}{2} = -\frac{cos 2x}{2}[/Tex] On shifting the origin at (0, 1/2), we get X = x and Y = [Tex]y – \frac{1}{2}[/Te
      5 min read

    Chapter 7: Trigonometric Ratios of Compound Angles

    • Class 11 RD Sharma Solutions - Chapter 7 Trigonometric Ratios of Compound Angles - Exercise 7.1 | Set 1
      Question 1. If sin A = 4/5 and cos B = 5/13, where 0 < A, B < π/2, find the values of the following: (i) sin (A + B) (ii) cos (A + B) (iii) sin (A - B) (iv) cos (A - B) Solution: Given that sin A = 4/5 and cos B = 5/13 As we know, cos A = (1 - sin2A) and sin B = (1 - cos2B), where 0 <A, B
      15+ min read

    • Class 11 RD Sharma Solutions - Chapter 7 Trigonometric Ratios of Compound Angles - Exercise 7.1 | Set 2
      Chapter 7 of RD Sharma's Class 11 Mathematics textbook focuses on "Trigonometric Ratios of Compound Angles." This chapter delves into the trigonometric identities related to the compound angles, offering a deeper understanding of how angles interact within the trigonometric functions. It provides es
      13 min read

    • Class 11 RD Sharma Solutions - Chapter 7 Trigonometric Ratios of Compound Angles - Exercise 7.2
      Question 1: Find the maximum and minimum values of each of the following trigonometrical expressions:(i) 12 sin x – 5 cos x(ii) 12 cos x + 5 sin x + 4(iii) 5 cos x + 3 sin (π/6 – x) + 4 (iv) sin x – cos x + 1 Solution: As it is known the maximum value of A cos α + B sin α + C is C + √(A2 +B2), And t
      7 min read

    Chapter 8: Transformation Formulae

    • Class 11 RD Sharma Solutions - Chapter 8 Transformation Formulae - Exercise 8.1
      It is vital for the students working on Class 11 Mathematics to get a hold of the Transformation Formulae. Therefore, the formulae featured in Chapter 8 of RD Sharma’s book serve as a prerequisite for solving different trigonometric problems. This guide will lead you to Exercise 8. 1, with clear spe
      15+ min read

    • Class 11 RD Sharma Solutions - Chapter 8 Transformation Formulae - Exercise 8.2 | Set 1
      In Class 11 Mathematics, Chapter 8 of RD Sharma's textbook focuses on Transformation formulas which are crucial for simplifying complex trigonometric expressions. This chapter helps students understand how to transform trigonometric functions into more manageable forms using specific formulae. Maste
      15+ min read

    • Class 11 RD Sharma Solutions - Chapter 8 Transformation Formulae - Exercise 8.2 | Set 2
      Question 11. If cosec A + sec A = cosec B + sec B, prove that tan A tan B =[Tex]cot\frac{A+B}{2} [/Tex]. Solution: We have, cosec A + sec A = cosec B + sec B => sec A − sec B = cosec B − cosec A =>[Tex]\frac{1}{cosA}-\frac{1}{cosB}=\frac{1}{sinB}-\frac{1}{sinA}[/Tex] =>[Tex]\frac{cosB-cosA}
      4 min read

    Chapter 9: Trigonometric Ratios of Multiple and Sub Multiple Angles

    • Class 11 RD Sharma Solutions - Chapter 9 Trigonometric Ratios of Multiple and Submultiple Angles - Exercise 9.1 | Set 1
      Prove the following identities: Question 1. √[(1 - cos2x)/(1 + cos2x)] = tanx Solution: Let us solve LHS, = √[(1 - cos2x)/(1 + cos2x)] As we know that, cos2x =1 - 2 sin2x = 2 cos2x - 1 So, = √[(1 - cos2x)/(1 + cos2x)] = √[(1 - (1 - 2sin2x))/(1 + (2cos2x - 1))] = √(1 - 1 + 2sin2x)/(1 + 2cos2x - 1)1 =
      10 min read

    • Class 11 RD Sharma Solutions - Chapter 9 Trigonometric Ratios of Multiple and Submultiple Angles - Exercise 9.1 | Set 2
      Prove the following identities: Question 16. cos2 (Ï€/4 - x) - sin2 (Ï€/4 - x) = sin 2x Solution: Let us solve LHS, = cos2 (Ï€/4 - x) - sin2(Ï€/4 - x) As we know that, cos2 A - sin2 A = cos 2A So, = cos2 (Ï€/4 - x) sin2 (Ï€/4 - x) = cos 2 (Ï€/4 - x) = cos (Ï€/2 - 2x) = sin 2x [As we know that, cos (Ï€/2 - A)
      11 min read

    • Class 11 RD Sharma Solutions - Chapter 9 Trigonometric Ratios of Multiple and Submultiple Angles - Exercise 9.1 | Set 3
      Chapter 9 of RD Sharma’s Class 11 Mathematics textbook focuses on the trigonometric ratios of the multiple and submultiple angles. This chapter explores the concepts of the trigonometric functions evaluated at angles that are multiples or submultiples of the standard angles. It provides formulas and
      9 min read

    • Class 11 RD Sharma Solutions - Chapter 9 Trigonometric Ratios of Multiple and Submultiple Angles - Exercise 9.2
      Chapter 9 of RD Sharma's Class 11 Mathematics textbook delves into the advanced concepts of the trigonometry specifically focusing on the trigonometric ratios of the multiple and submultiple angles. This chapter is crucial for students as it builds on the foundational knowledge of the trigonometric
      7 min read

    • Class 11 RD Sharma Solutions - Chapter 9 Trigonometric Ratios of Multiple and Submultiple Angles - Exercise 9.3
      Prove that:Question 1. sin2 72o – sin2 60o = (√5 – 1)/8 Solution: We have, L.H.S. = sin2 72o – sin2 60o = sin2 (90o–18o) – sin2 60o = cos2 18o – sin2 60o = [Tex]\left(\frac{\sqrt{10+2\sqrt{5}}}{4}\right)^2-\left(\frac{\sqrt{3}}{2}\right)^2[/Tex] = [Tex] \frac{10 + 2\sqrt{5}}{16} – \frac{3}{4}[/Tex]
      4 min read

geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences