Programming Articles

Page 1777 of 2547

Middle Term in the Binomial Expansion Series

Simran Kumari
Simran Kumari
Updated on 23-Aug-2023 335 Views

How can you determine the middle term in the binomial expansion series? The middle term in a binomial expansion series is determined by whether the expansion has an odd or even number of terms. The middle term is the (n+1)/2th term of the expansion if the number of terms is odd. For instance, the expansion of (a+b)^5 has 6 terms, making the middle term (5+1)/2 = 3rd term, or 10a^2b^3. There are two intermediate terms—the n/2nd and (n/2)+1th terms of the expansion—if the number of terms is even. For instance, there are 5 terms in the expansion of (a+b)^4; the ...

Read More

Check if two People Starting from different Points Ever Meet

Simran Kumari
Simran Kumari
Updated on 23-Aug-2023 255 Views

What comes to your mind on reading the title which says `Check if two people starting from different points ever meet`? Let’s decode. We can utilize the idea of relative velocity to find whether two persons coming from different spots ever cross paths. Now, you might be aware of the term `relative velocity`. Let’s recall. The velocity of an object relative to another item or frame of reference is known as its relative velocity. It is calculated by deducting one object's velocity from another object's velocity. If two individuals are going in the same direction, their relative velocities can be ...

Read More

Centered Tetrahedral Number

Simran Kumari
Simran Kumari
Updated on 23-Aug-2023 622 Views

What do you understand by a centered tetrahedral number? Let’s explore it in this article. Firstly, what is a tetrahedral number? A tetrahedral number is a figurate number that represents the number of spheres in a tetrahedron. It is also known as a triangular pyramid number. A tetrahedron is a three−dimensional geometric shape that has four triangular faces, six edges, and four vertices. To find the nth tetrahedral number, you can use the formula: Tn = (n * (n + 1) * (n + 2)) / 6 For example, the first few tetrahedral numbers are: 1, 4, 10, ...

Read More

Centered Triangular Number

Simran Kumari
Simran Kumari
Updated on 23-Aug-2023 491 Views

What do you understand by the term centered triangular number? Let’s decode in this article. First, what is a triangular number? A triangular arrangement of objects or dots can be used to represent a particular kind of figurate number known as a triangular number. The sum of the first n natural numbers is the nth triangular number. The first few triangular numbers, for instance, are: 1, 3, 6, 10, 15, 21 You can view these figures as triangular clusters of dots to demonstrate how they were calculated, as seen below: If you take a closer look you will ...

Read More

Centered Square Number

Simran Kumari
Simran Kumari
Updated on 23-Aug-2023 439 Views

What do you understand by Centered Square Number? Let’s decode in this article. Firstly, what is square number? A square number, also known as a perfect square, is a non−negative integer formed by multiplying an integer by itself. A square number, in other words, is the result of multiplying a number by itself. For example, 1, 4, 9, 16, 25, 36, 49, 64, 81, and 100 are all square numbers. The sequence of square numbers can be represented by the formula n^2, where n is a positive integer. For instance, the first five square numbers are 1^2 = 1, 2^2 ...

Read More

Centered Pentagonal Number

Simran Kumari
Simran Kumari
Updated on 23-Aug-2023 623 Views

What do you understand by a centered pentagonal number? Let’s decode in this article. First of all, what is a pentagon? You must be aware of this term. To recall, A pentagon is a geometric shape with five straight sides and five angles that is two−dimensional. The Greek terms "penta, " which means "five, " and "gonia, " which means "angle, " are the origin of the word "pentagon." All of the sides and angles make up a regular pentagon (equal in measure). The sum of all the angles of a regular pentagon, which has 108 degrees for each angle, ...

Read More

Centered Octahedral Number

Simran Kumari
Simran Kumari
Updated on 23-Aug-2023 486 Views

What do you mean by a Centered octahedral number? Let’s decode. Firstly, what is an Octahedron? An octahedron is an eight−sided, equilateral triangle−shaped three−dimensional geometric shape. With 8 vertices, 12 edges, and 6 square faces, it is a polyhedron. One of the five Platonic solids, which are regular, convex polyhedra with symmetrical vertex arrangements and identical faces, is the octahedron. The octahedron has a variety of fascinating characteristics and uses, including crystallography, where it is used to describe the structure of certain crystals, and computer graphics, where it is used to model objects in three dimensions. Numerous other natural phenomena, ...

Read More

Centered Heptagonal Number

Simran Kumari
Simran Kumari
Updated on 23-Aug-2023 465 Views

What do you understand by the term centered hepatgonal number? Let’s decode in this article. First of all, what is a heptagonal number? A heptagonal number is a figurate number representing the number of dots that can be arranged to form a regular heptagon (a seven−sided polygon). The formula for the nth heptagonal number is: n(5n−3)/2, where n must be a positive integer. The first few heptagonal numbers, for example, are: 1 is the first heptagonal number (corresponding to a heptagon with one dot). 7 is the second heptagonal number (corresponding to a heptagon with 7 dots). 18 is ...

Read More

Cake Number

Simran Kumari
Simran Kumari
Updated on 23-Aug-2023 616 Views

What do you understand by the term `Cake Number`? Let's decode it in this article. The term "cake number" describes a concept of discrete geometry and combinatorics−related mathematical idea. It is built on the concept of the Lazy caterer's sequence. What is the Lazy Caterer's Sequence? The maximum number of pieces a disk (cake or pizza) can be sliced into using a specific number of straight slices is known as the Lazy caterer's sequence. Although it mentions a disk, we will consider a cake in our example. One straight cut can divide a cake into two pieces, two straight cuts ...

Read More

Minimum Number of Operations to move all Uppercase Characters before all Lower Case Characters

Neetika Khandelwal
Neetika Khandelwal
Updated on 22-Aug-2023 504 Views

You are given a string 'str' that contains both uppercase and lowercase letters. Any lowercase character can be changed to an uppercase character and vice versa in a single action. The goal is to print the least possible instances of this process that are necessary to produce a string containing at least one lowercase character, followed by at least one uppercase character. Input Output Scenarios First possible solution: the first 4 characters can be converted to uppercase characters i.e. “TUTORial” with 4 operations. Input str = “tutoRial” Output 1 Second possible solution: the third character ...

Read More
Showing 17761–17770 of 25,466 articles
Advertisements