text stringlengths 1 2.12k | source dict |
|---|---|
All of those are true about an empty set and a set $B$ and, to me at least, the all feel directly true with no semantic slick word play or gimmicks. The empty skein of the the emptyset (with nothing in it) is embedded every where in the ether of existent space. That doesn't seem to me to be a "trick". And because nothing can be pulled out of the emptyset, if we are standing in the general vacinity of $B$ nothing can be pulled out of the empty set that isn't from $B$. That's a direct objective fact.
In general, the predicate logic statement that $\forall x(x \in A \implies x \in B)$ is written as $A \subseteq B$.
The empty set $\emptyset$ is the set that contains no elements. Therefore, the empty set is a subset of any set, that is, $\emptyset \subseteq X$ for all $X$. This is because the statement $x \in \emptyset$ is false for any $x$, so the imiplication
$$\forall x(x \in \emptyset \implies x \in X)$$
must be true. (See the truth table below for the for the implication connective.)
$$\begin{array}{c|l|c} \text{p} & \text{q} & \text{p \implies q} \\ \hline T & T & T \\ T & F & F \\ F & T & T \\ F & F & T \end{array}$$
Note that the bottom two rows of the truth table are vacuously true. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9867771798031351,
"lm_q1q2_score": 0.8537833698151196,
"lm_q2_score": 0.8652240721511739,
"openwebmath_perplexity": 382.2226008121524,
"openwebmath_score": 0.7642687559127808,
"tags": null,
"url": "https://math.stackexchange.com/questions/2721368/empty-set-subsets-and-vacuous-truths"
} |
# an exam has 50 multiple choice questions with 5 options
An exam has 50 multiple choice questions. Each question has five answer options and each question has 2 grades A-. Assuming that "a student" has no prior knowledge and randomly guess on all questions exam,
1. Compute the expected mean for the student score
2. Compute the standard deviation for the student score
3. What is the probability that the student will succeed in the exam if you know the passing grade is 60?
4. What is the probability that student will get a zero grade ?? Now assume that all students have no prior knowledge and they all randomly guess on all questions exam : What is the expected success rate? How do you expect the proportion of students who will score less or equal to 20?
If you know that the questions were distributed regularly (uniformly) on the lectures of the course and that another student may submit the exam and only studied Half of the course's lectures but he did the study so thoroughly that he could answer any question from the part he was studying And correctly answered 50% of the exam questions correctly and the rest of the questions he answered Random?
a. What is the expectation of this student's degree?
b. what is the standard deviation of this student's grade?
b. What is the probability that this student will succeed in the exam if you knwo the passing grade is 60? | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9867771774699747,
"lm_q1q2_score": 0.8537833660817448,
"lm_q2_score": 0.865224070413529,
"openwebmath_perplexity": 627.6381328677032,
"openwebmath_score": 0.7624414563179016,
"tags": null,
"url": "https://math.stackexchange.com/questions/3233799/an-exam-has-50-multiple-choice-questions-with-5-options"
} |
1. for A it is a binomial process with p=1/5 , q=4/5 and n=50 so the expected value is np but * 2 because of 2 grades , the variance is npq also * 2,, for 4 I would use the binomial formula for x= 0 ?? is that correct
• Welcome to MSE. You'll get a lot more help, and fewer votes to close, if you show that you have made a real effort to solve the problem yourself. What are your thoughts? What have you tried? How far did you get? Where are you stuck? This question is likely to be closed if you don't add more context. Please respond by editing the question body. Many people browsing questions will vote to close without reading the comments. – saulspatz May 21 at 0:59
• thanks I did it – Nidal May 21 at 1:29
It seems you already know how to find the mean and variance of a binomial random variable, you I will leave that part to you.
For a binomial random variable $$X$$ with $$n = 50$$ and $$p = 1/5,$$ you can use a normal approximation to binomial to get reasonable approximate answers to these questions. (You will get somewhat better approximations, if you use a continuity correction, but even then you can't expect to get more than two or three places of accuracy.)
Alternatively, you can use statistical software (or perhaps a statistical calculator) to to get answers exact to many decimal places.
Below are some answers from R statistical software, in which dbinom and pbinom, designate a binomial PDF and CDF, respectively. I assume each correct guess counts 2 points and that there is no penalty for incorrect guesses.
$$P(X \ge 30) = 1 - P(X \le 29) \approx 0$$
1 - pbinom(29, 50, .2)
[1] 6.936747e-10
$$P(X \le 10) = .5836.$$
pbinom(10, 50, .2)
[1] 0.5835594
$$P(X = 0) = .8^{50}.$$
dbinom(0, 50, .2); .8^50.
[1] 1.427248e-05
[1] 1.427248e-05
A student who has studied half of the material should have probability $$p = 0.6$$ of answering each question correctly. Why? Let $$Y$$ be the number of correctly answered questions. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9867771774699747,
"lm_q1q2_score": 0.8537833660817448,
"lm_q2_score": 0.865224070413529,
"openwebmath_perplexity": 627.6381328677032,
"openwebmath_score": 0.7624414563179016,
"tags": null,
"url": "https://math.stackexchange.com/questions/3233799/an-exam-has-50-multiple-choice-questions-with-5-options"
} |
$$P(Y \ge 30) = 1 - P(Y \le 29) = 0.5610.$$
1 - pbinom(29, 50, .6)
[1] 0.5610349
Using a normal approximation. The number $$Y$$ correct has $$E(Y) = np = 50(.6) = 30,$$ $$Var(Y) = 12,$$ $$SD(Y) = 3.4641.$$
Thus $$Y \stackrel{aprx}{\sim} \mathsf{Norm}(\mu=30, \sigma=3.4641)$$ and (standardizing) $$Z = \frac{Y - \mu}{\sigma} \stackrel{aprx}{\sim} \mathsf{Norm}(0, 1).$$
Hence, $$P(Y \ge 30) = 1 - P(Y < 29.5) \approx 0.557.$$ (If you standardize and use printed normal tables you will get about the same answer; not quite because of the rounding involved in using the table.)
1 - pnorm(29.5, 30, 3.4641)
[1] 0.5573831
The figure below shows the PDF of $$\mathsf{Binom}(50,.6)$$ (bars) along with the density function of $$\mathsf{Norm}(30, 3.4641)$$ (blue curve). The probability $$P(Y \ge 30)$$ is the sum of the heights of the lines to the right of the dotted red line. (This probability is approximated by the area under the normal density curve to the right of this vertical line.)
The R code for the figure is shown below:
y = 0:50; PDF = dbinom(y, 50, .6)
plot(y, PDF, type="h", lwd=2, main="PDF of BINOM(50,.35) with Normal Approx.")
curve(dnorm(x, 30, 3.4641), 0, 50, add=T, col="blue")
abline(h=0, col="green2"); abline(v=0, col="green2") | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9867771774699747,
"lm_q1q2_score": 0.8537833660817448,
"lm_q2_score": 0.865224070413529,
"openwebmath_perplexity": 627.6381328677032,
"openwebmath_score": 0.7624414563179016,
"tags": null,
"url": "https://math.stackexchange.com/questions/3233799/an-exam-has-50-multiple-choice-questions-with-5-options"
} |
• that was helpful,,, when he studied half of the material why p=0.6 I didn't get it. – Nidal May 21 at 10:55
• when he has no prior knowledge p was 1/5 (like one option will be right from the five options), now when he has studied half of the material why p is 3/5=0.6. – Nidal May 21 at 14:06
• S = studied, N = not. P(S)=P(N) = 1/2. P(Corr) = 1P(S) + (1/5)P(N) = .5 + .5(.2) = .5+.1 = .6. Law of total probability. – BruceET May 21 at 15:54
• Unsolicited, so likely unwelcome advice: I have had a look at your history of activity on this site. In my opinion, although you ask some nice questions, you reveal much less of your work and thinking than optimal. (Even those bits often only on demand.) Looks as if you are taking a fine and well-taught course. Outsourcing too much of the problem solving is not a path toward effective learning. – BruceET May 21 at 16:20
• We can't be sure there are exactly 25 questions from the parts the student studies. The way I read it, there are on average 25 such questions. // Your way and mine both give expected nr correct as 30, but for slightly different distributions. Mine BINOM(50, .6), yours 25 + BINOM(25, .2). Same mean, mine has larger variance. – BruceET May 21 at 19:33 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9867771774699747,
"lm_q1q2_score": 0.8537833660817448,
"lm_q2_score": 0.865224070413529,
"openwebmath_perplexity": 627.6381328677032,
"openwebmath_score": 0.7624414563179016,
"tags": null,
"url": "https://math.stackexchange.com/questions/3233799/an-exam-has-50-multiple-choice-questions-with-5-options"
} |
This section is to introduce the notation to the reader and explain its usage. Set theory is one of the foundational systems for mathematics, and it helped to develop our modern understanding of infinity and real numbers. Intersection and union of sets. Compact set notation is a useful tool to describe the properties of each element of a set, rather than writing out all elements of a set. They are { } and { 1 }. Probability and statistics symbols table and definitions - expectation, variance, standard deviation, distribution, probability function, conditional probability, covariance, correlation Crow's foot notation, however, has an intuitive graphic format, making it the preferred ERD notation for Lucidchart. The individual objects in a set are called the members or elements of the set. The guide you are now reading is a “legend” to how we notate drum and percussion parts when we engrave music at Audio Graffiti. Thankfully, there is a faster way. Usually, you'll see it when you learn about solving inequalities, because for some reason saying "x < 3" isn't good enough, so instead they'll want you to phrase the answer as "the solution set is { x | x is a real number and x < 3 }".How this adds anything to the student's understanding, I don't know. Basic set operations. Use set notation to describe: (a) the area shaded in blue (b) the area shaded in purple. If you … ALT Codes for Math Symbols: Set Membership & Empty Sets Read More » In this notation, the vertical bar ("|") means "such that", and the description can be interpreted as "F is the set of all numbers n, such that n is an integer in the range from 0 to 19 inclusive". The table below lists all of the necessary symbols for compact set notation. Mathematical Set Notation. Subset, strict subset, and superset. The domains and ranges used in the discrete function examples were simplified versions of set notation. Symbolab: equation search and math solver - solves algebra, trigonometry and calculus problems step by | {
"domain": "picasso-project.eu",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339897,
"lm_q1q2_score": 0.8537779215555548,
"lm_q2_score": 0.8807970748488297,
"openwebmath_perplexity": 1006.1679112481584,
"openwebmath_score": 0.6717374324798584,
"tags": null,
"url": "https://picasso-project.eu/nigella-cook-srdcyz/set-notation-symbols-bd1612"
} |
equation search and math solver - solves algebra, trigonometry and calculus problems step by step Sets. Set Theory Symbols Posted in engineering by Christopher R. Wirz on Wed Feb 08 2017. That is OK, it is just the "Empty Set". Some notations for sets are: {1, 2, 3} = set of integers greater than 0 … You never know when set notation is going to pop up. Illustration: Demo. In this section, we will introduce the standard notation used to define sets, and give you a chance to practice writing sets in three ways, inequality notation, set-builder notation, and interval notation. If you want to get in on their secrets, you'll want to become familiar with these Venn diagram symbols. A set is a collection of objects, things or symbols which are clearly identified.The individual objects in the set are called the elements or members of the set. Typing math symbols into Word can be tedious. any. ... Set Language And Notation. of . There are many different symbols used in set notation, but only the most basic of structures will be provided here. Which is why the bulk of this follow-up piece covers the very basics of set theory notation, operations & visual representations extensively. Lots symbols look similar but mean different things. IGCSE 9-1 Exam Question Practice (Sets + Set Notation) 4.9 34 customer reviews. A set is a well-defined collection of distinct objects. Also, check the set symbols here.. Sets, in mathematics, are an organized collection of objects and can be represented in set-builder form or roster form.Usually, sets are represented in curly braces {}, for example, A = {1,2,3,4} is a set. Let’s kick off by introducing the two most basic symbols for notating a set & it’s corresponding elements. MS Word Tricks: Typing Math Symbols 2015-05-14 Category: MS Office. To fully embrace the world of professional Venn diagrams, you should have a basic understanding of the branch of mathematical logic called ‘set theory’ and its associated symbols and notation. Author: | {
"domain": "picasso-project.eu",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339897,
"lm_q1q2_score": 0.8537779215555548,
"lm_q2_score": 0.8807970748488297,
"openwebmath_perplexity": 1006.1679112481584,
"openwebmath_score": 0.6717374324798584,
"tags": null,
"url": "https://picasso-project.eu/nigella-cook-srdcyz/set-notation-symbols-bd1612"
} |
branch of mathematical logic called ‘set theory’ and its associated symbols and notation. Author: Created by Maths4Everyone. We attempt to follow the standards set out in Norman Weinberg’s Guide to Standardized Drumset Notation. 8 February 2019 OSU CSE 1. This cheat sheet is extremely useful. Sometimes the set is written with a bar instead of a colon: {x¦ x > 5}. Cardinality and ordinality Bringing the set operations together. The Universal Set … Consider the set $\left\{x|10\le x<30\right\}$, which describes the behavior of $x$ in set-builder notation. and symbols. Set theory starter. Set notation practice. Example: Set-Builder Notation: Read as: Meaning: 1 {x : x > 0}the set of all x such that x is greater than 0. any value greater than 0: 2 {x : x ≠ 11}the set of all x such that x is any number except 11. any value except 11: 3 {x : x < 5}the set of all x such that x is any number less than 5. any value less than 5 Note that it's unnecessary to load amsmath if you load mathtools. Email. Google Classroom Facebook Twitter. Set notation and Venn diagrams questions. Set Theory • A mathematical model that we will use often is that of . Set notation is an important convention in computer science. CCSS.Math: HSS.CP.A.1. Look at the venn diagram on the left. Shading task. In, sets theory, you will learn about sets and it’s properties. On the Insert tab, in the Symbols group, click the arrow under Equation, and then click Insert New Equation. Relative complement or difference between sets. When picking a symbol, best to trust the symbol's unicode name for its meaning, not appearance. Universal set and absolute complement. Researchers and mathematicians have developed a language and system of notation around set theory. Null set is a proper subset for any set which contains at least one element. Occasionally we will introduce a new symbol to cater for an unusual requirement of a client. S et theory is a branch of mathematics dedicated to the study of collections of | {
"domain": "picasso-project.eu",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339897,
"lm_q1q2_score": 0.8537779215555548,
"lm_q2_score": 0.8807970748488297,
"openwebmath_perplexity": 1006.1679112481584,
"openwebmath_score": 0.6717374324798584,
"tags": null,
"url": "https://picasso-project.eu/nigella-cook-srdcyz/set-notation-symbols-bd1612"
} |
of a client. S et theory is a branch of mathematics dedicated to the study of collections of objects, its properties, and the relationship between them. After school they signed up and became members. The table below contains one example set… Because rarely used symbol may look very different on another computer. While crow's foot notation is often recognized as the most intuitive style, some use OMT, IDEF, Bachman, or UML notation, according to their preferences. In set-builder notation, the set is specified as a selection from a larger set, determined by a condition involving the elements. The default way of doing it is to use the Insert > Symbols > More Symbols dialog, where you can hunt for the symbol you want. Symbol Symbol Name Meaning / definition Example { } set: a collection of elements: A = {3,7,9,14}, It is still a set, so we use the curly brackets with nothing inside: {} The Empty Set has no elements: {} Universal Set. The Wolfram Language has the world's largest collection of consistent multifont mathematical notation characters\[LongDash]all fully integrated into both typesetting and symbolic expression construction . Click the arrow next to the name of the symbol set, and then select the symbol set that you want to display. When using set notation, we use inequality symbols to describe the domain and range as a set of values. Let us discuss the next stuff on "Symbols used in set theory" If null set is a super set Problem 1: Mrs. Glosser asked Kyesha, Angie and Eduardo to join the new math club. This carefully selected compilation of exam questions has fully-worked solutions designed for students to go through at home, saving valuable time in class. Solution: Let P be the set of all members in the math Created: Jan 19, 2018 | Updated: Feb 6, 2020. Topics you will need to know in order to pass the quiz include sets, subsets, and elements. Hyperbolic functions The abbreviations arcsinh, arccosh, etc., are commonly used for inverse hyperbolic | {
"domain": "picasso-project.eu",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339897,
"lm_q1q2_score": 0.8537779215555548,
"lm_q2_score": 0.8807970748488297,
"openwebmath_perplexity": 1006.1679112481584,
"openwebmath_score": 0.6717374324798584,
"tags": null,
"url": "https://picasso-project.eu/nigella-cook-srdcyz/set-notation-symbols-bd1612"
} |
functions The abbreviations arcsinh, arccosh, etc., are commonly used for inverse hyperbolic trigonometric functions (area hyperbolic functions), even though they are misnomers, since the prefix arc is the abbreviation for arcus, while the prefix ar stands for area. take the previous set S ∩ V ; then subtract T: This is the Intersection of Sets S and V minus Set T (S ∩ V) − T = {} Hey, there is nothing there! A variant solution, also based on mathtools, with the cooperation of xparse allows for a syntax that's closer to mathematical writing: you just have to type something like\set{x\in E;P(x)} for the set-builder notation, or \set{x_i} for sets defined as lists. This quiz and attached worksheet will help gauge your understanding of set notation. Under Equation Tools , on the Design tab, in the Symbols group, click the More arrow. State whether each … Below is the complete list of Windows ALT codes for Math Symbols: Set Membership & Empty Sets, their corresponding HTML entity numeric character references, and when available, their corresponding HTML entity named character references, and Unicode code points. The colon means such that.. For example: {x: x > 5}.This is read as x such that x is greater than > 5.. Set notation. The following table gives a summary of the symbols use in sets. For example, a set F can be specified as follows: = {∣ ≤ ≤}. Because null set is not equal to A. Admin Igcse Mathematics Revision Notes, O Level Mathematics Revision Notes 2 Comments 12,074 Views. Basic Set Theory . Set notation is used to help define the elements of a set. For example, let us consider the set A = { 1 } It has two subsets. Preview. elements . Quiz & Worksheet Goals Inequalities can be shown using set notation: {x: inequality}where x: indicates the variable being described and inequality is written as an inequality, normally in its simplest form. They wrote about it on the chalkboard using set notation: P = {Kyesha, Angie and Eduardo} When Angie's mother came to pick | {
"domain": "picasso-project.eu",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339897,
"lm_q1q2_score": 0.8537779215555548,
"lm_q2_score": 0.8807970748488297,
"openwebmath_perplexity": 1006.1679112481584,
"openwebmath_score": 0.6717374324798584,
"tags": null,
"url": "https://picasso-project.eu/nigella-cook-srdcyz/set-notation-symbols-bd1612"
} |
the chalkboard using set notation: P = {Kyesha, Angie and Eduardo} When Angie's mother came to pick her up, she looked at the chalkboard and asked: What does that mean? Symbols Used in this Book; Glossary; While a comprehensive list of notation is included in the appendix, that is meant mostly as a reference tool to refresh the reader of what notation means. Purplemath. Basic set notation. The symbols shown in this lesson are very appropriate in the realm of mathematics and in mathematical logic. | {
"domain": "picasso-project.eu",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339897,
"lm_q1q2_score": 0.8537779215555548,
"lm_q2_score": 0.8807970748488297,
"openwebmath_perplexity": 1006.1679112481584,
"openwebmath_score": 0.6717374324798584,
"tags": null,
"url": "https://picasso-project.eu/nigella-cook-srdcyz/set-notation-symbols-bd1612"
} |
Tiger Synonyms In Sanskrit, Avoca Sands Cafe Menu, Cloris The Tick, Gambrell Hall Benedict College, Shellfish Allergy List, Power Reclining Loveseat With Center Console, Lake Sutherland Vacation Rentals, Should I Date Him Quiz Long-distance, C300 Asus Chromebook, | {
"domain": "picasso-project.eu",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339897,
"lm_q1q2_score": 0.8537779215555548,
"lm_q2_score": 0.8807970748488297,
"openwebmath_perplexity": 1006.1679112481584,
"openwebmath_score": 0.6717374324798584,
"tags": null,
"url": "https://picasso-project.eu/nigella-cook-srdcyz/set-notation-symbols-bd1612"
} |
If two angles do not form a linear pair, then they are not supplementary. Linear Pair Two adjacent angles form a linear pair if their non-common sides form a straight angle. Axiom 1: If a ray stands on a line then the adjacent angles form a linear pair of angles. They just need to add up to 90 degrees. Contrapositive: If the angles are not adjacent, then the two angles do not form a linear pair. B A V CLinear Pair Postulate: If two angles form a linear pair, then they are supplementary. Therefore, all the exterior angles are equal, and can be found by dividing 360° by the number of angles . Linear A linear pair of angles is a pair of adjacent angles whose non common sides are opposite rays. The sides of the angles do not form two pairs of opposite rays. [Image will be Uploaded Soon] In the figure given above, all line segments are passing through the point O, as shown in the figure. Name a linear pair. 9 years ago. where ∠DBC is an exterior angle of ∠ABC and, ∠A and ∠C are the remote interior angles. Related Questions to study. Write. A) vertical angles B) complementary C) acute D) a linear pair * please answer only if you know As the ray OF lies on the line segment MN, angles ∠FON and ∠FOM form a linear pair. Question 1. Don't two angles ALWAYS have to be adjacent in order to form a line (linear pair)? Assignment Directions: Solve the following word problems involving linear pairs. When a pair of adjacent angles create a straight line or straight angle, they are a linear pair. Are two angles in the same plane with a common vertex and a common side, but no common interior points. The measure of one angle is 24 more than the measure of the other angle. As the ray OA lies on the line segment CD, angles ∠ AOD and ∠ AOC form a linear pair. B. Can you explain this answer? Linear PairA linear pair consists of two adjacent angles whose noncommon sides are opposite rays. For #1-6, use the figure at the right. Flashcards. a. Tell whether the angles are only adjacent, | {
"domain": "mybrightfuture.org",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339898,
"lm_q1q2_score": 0.8537779124563548,
"lm_q2_score": 0.8807970654616711,
"openwebmath_perplexity": 829.5373305594145,
"openwebmath_score": 0.622346043586731,
"tags": null,
"url": "https://mybrightfuture.org/a0uppzk0/1myldcg.php?94011f=do-adjacent-angles-form-a-linear-pair"
} |
For #1-6, use the figure at the right. Flashcards. a. Tell whether the angles are only adjacent, adjacent and form a linear pair, or not adjacent. 14. In which diagram do angles 1 and 2 form a linear pair. (iii) When two lines intersect opposite angles are equal. A linear pair is two angles that add up to be 180o.A linear pair is two adjacent, supplementary angles.Adjacent means they share ONE ray.Supplementary means add … The sum of the linear pair of angles is always equal to 180 degrees. A Linear Pair is two adjacent angles whose non-common sides form opposite rays. Match. Tell whether the angles are only adjacent, adjacent and form a linear pair, or not adjacent. The other two pairs of angles are adjacent, but they are not forming a linear pair. Two angles are said to be linear if they are adjacent angles formed by two intersecting lines. Name two acute vertical angles. Add your answer and earn points. If two angles are not adjacent, then they do not form a linear pair. ii) When non-common sides of a pair of adjacent angles form opposite rays, then the pair forms a linear pair. Since the non-adjacent sides of a linear pair form a line, a linear pair of angles is always supplementary. In the figure, ∠ 1 and ∠ 2 form a linear pair. However, just because two angles are supplementary does not mean they form a linear pair. A linear pair of angles is a pair of adjacent angles whose non common sides are opposite rays. Favorite Answer. Name an angle complementary to . View Answer . Basically, a linear pair of angles always lie on a straight line. Similarly, ∠GON and ∠HON form a linear pair and so on. The measure of one angle is 15 less than half the measurement of its supplement. For △ABC above, ∠A+∠C+∠ABC=180°. "Complementary Angles" These are angles that add up to 90 degrees. If the two complementary angles are adjacent then they will form a right angle. They share a common vertex, but not a … Consider a Ray OP Stand on the Line Segment as Shown: The angles which are | {
"domain": "mybrightfuture.org",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339898,
"lm_q1q2_score": 0.8537779124563548,
"lm_q2_score": 0.8807970654616711,
"openwebmath_perplexity": 829.5373305594145,
"openwebmath_score": 0.622346043586731,
"tags": null,
"url": "https://mybrightfuture.org/a0uppzk0/1myldcg.php?94011f=do-adjacent-angles-form-a-linear-pair"
} |
vertex, but not a … Consider a Ray OP Stand on the Line Segment as Shown: The angles which are formed at E are ∠QEM and ∠QEN. Two angles may be supplementary, but not adjacent and therefore not form a linear pair. A linear pair forms a straight angle of 180 degrees, so you have two angles whose sum is given as 180, which means they are supplementary. Therefore, the exterior angles measure = = 72° each. Name a pair of adjacent angles. Learn. Example 2: If two adjacent angles form a linear pair, show that their angle bisectors are perpendicular. When two lines intersect each other at a common point then, a linear pair of angles are formed. Such angle pairs are … Linear-pair-angles are always supplementary. <3 and <4 form a linear pair. Hope this helps! In the diagram above, ∠ABC and ∠DBC form a linear pair. Hence vertical angles are not adjacent. Linear Pair Of Angles. Related Questions to study. Two angles are called supplementary angles if Answer Save. How to Find Adjacent Angles. | EduRev Class 7 Question is disucussed on EduRev Study Group by 2108 Class 7 … B Supplementary angles and linear pairs both add to 180°. Two angles that add to 180 degrees and when adjacent form a straight line. If two angles are not adjacent, then they do not form a linear pair. Two adjacent angles are said to form a linear pair angles , if their non-common arms are two opposite rays. Adjacent angles do not overlap. S_Pinkston. If the angles are adjacent to each other after the intersection of the lines, then the angles are said to be adjacent. "Congruent Angles" They have the same angle in degrees or radian. As the adjacent angles form a linear pair and they are supplementary. <1 and <2 are adjacent angles. Linear Pair Angles. C. If two angles are not supplementary, then they do not form a linear pair. Pro Lite, Vedantu Example 2: Determine if the following pair of angles are vertical angles, linear pairs, or neither. ∴ Yes, ∠1 is vertically opposite to ∠4, And angle vertically | {
"domain": "mybrightfuture.org",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339898,
"lm_q1q2_score": 0.8537779124563548,
"lm_q2_score": 0.8807970654616711,
"openwebmath_perplexity": 829.5373305594145,
"openwebmath_score": 0.622346043586731,
"tags": null,
"url": "https://mybrightfuture.org/a0uppzk0/1myldcg.php?94011f=do-adjacent-angles-form-a-linear-pair"
} |
angles, linear pairs, or neither. ∴ Yes, ∠1 is vertically opposite to ∠4, And angle vertically opposite to ∠5 is ∠BOC. 1 See answer chanybonilla is waiting for your help. What can you say about its other angle? Example 2: Determine if the following pair of angles are vertical angles, linear pairs, or neither. Consider the following figure in which a ray $$\overrightarrow{OP}$$ stand on the line segment $$\overline{AB}$$ as shown: The angles ∠POB and ∠POA are formed at O. 12. The sum of their angles is 180° or π radians. ! In the figure above, all the line segments pass through the point O as shown. what are the two factors that make you decide whether a pair of adjacent a angles from a linear pair 2 See answers saryunahar141005 saryunahar141005 Answer: All adjacent angles do not form a linear pair. In the diagram below, ∠ABC and ∠DBE are supplementary since 30°+150°=180°, but they do not form a linear pair since they are not adjacent. Pro Subscription, JEE In which diagram do angles 1 and 2 form a linear pair. In the diagram above, ∠ABC and ∠DBC form a linear pair. By: Carol H. answered • 02/22/18. Also, the ray is that part of the line which has only one endpoint. Test. A linear pair of angles is formed when two lines intersect. Thus, the sum of the exterior angles is: For regular polygon, all of the angles of a are equal. so, a pair of straight angles can also be adjacent angle. Join Yahoo Answers and get 100 points today. The pair of adjacent angles are constructed on a line segment, but not all adjacent angles are linear. Learn how to identify angles from a figure. <2 and <4 <2 and <4. This can be shown by using linear pairs. When a pair of adjacent angles create a straight line or straight angle, they are a linear pair. It can't think of a contradiction. Consider the following figure in which a ray $$\overrightarrow{OP}$$ stand on the line segment $$\overline{AB}$$ as shown: The angles ∠POB and ∠POA are formed at O. Example 2 : In the diagram shown below, | {
"domain": "mybrightfuture.org",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339898,
"lm_q1q2_score": 0.8537779124563548,
"lm_q2_score": 0.8807970654616711,
"openwebmath_perplexity": 829.5373305594145,
"openwebmath_score": 0.622346043586731,
"tags": null,
"url": "https://mybrightfuture.org/a0uppzk0/1myldcg.php?94011f=do-adjacent-angles-form-a-linear-pair"
} |
as shown: The angles ∠POB and ∠POA are formed at O. Example 2 : In the diagram shown below, Solve for x and y. Get the answers you need now. 14. (ii) Adjacent complementary angles. Substituting the second equation into the first equation we get. Since the non-adjacent sides of a linear pair form a line, a linear pair of angles is always supplementary. D. If two angles form a linear pair, then they are supplementary. Linear pair. Supplementary angles are two angles whose same is 180o Linear pairs are adjacent angles who share a common ray and whose opposite rays form a straight line. A circle of the infinite radius can be visualized on the straight line. The figure shows the design on an outdoor fence. Gravity. Use ½ sheet of paper. Ans : (d) Bisectors of the adjacent angles forming a linear pair form a right angle. A linear pair is a pair of adjacent angles whose non-adjacent sides form a line. See tutors like this. 3. The sum of their angles is 180 ° or π radians. Learn vocabulary, terms, and more with flashcards, games, and other study tools. In the regular pentagon above, n = 5. 0 0. A linear pair of angles is a pair of adjacent angles whose non common sides are opposite rays. PLAY. Supplementary angles do not have to be adjacent, whereas a linear pair must be adjacent and create a straight line. Fill in the blanks: If two adjacent angles are supplementary, they form a _____. An angle is 18c less than its complementary angle. 1 See answer chanybonilla is waiting for your help. (iv) Unequal supplementary angles. a. b. c. Exploration #1: Use this link to explore the relationship with vertical angles. Linear pair is a pair of adjacent angles where non-common side forms a straight line. Answer:Pair of adjacent angles whose measures add up to form a straight angle is known as a linear pairStep-by-step explanation:see A linear pair forms a straig… 2 0. If two angles are supplementary, then they form a linear pair. They have common vertex O. i tried searching it but i | {
"domain": "mybrightfuture.org",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339898,
"lm_q1q2_score": 0.8537779124563548,
"lm_q2_score": 0.8807970654616711,
"openwebmath_perplexity": 829.5373305594145,
"openwebmath_score": 0.622346043586731,
"tags": null,
"url": "https://mybrightfuture.org/a0uppzk0/1myldcg.php?94011f=do-adjacent-angles-form-a-linear-pair"
} |
supplementary, then they form a linear pair. They have common vertex O. i tried searching it but i wasn't sure cause it was so confusing at first i thought i was getting it but i wasn't. Correct answer to the question: 5. Also, there is a common arm that represents both the angles of the linear pair. A line segment with A and B as two endpoints is represented as AB. Spell. They do not form a straight line. Easily fill out PDF blank, edit, and sign them. They have common side OB. If a linear pair is formed by two angles, the uncommon arms of the angles forms a straight line. In a diagram angle 1 and angle 2 form an linear pair and angle 2 and angle 3 form vertical angles. The above discussion can be stated as an axiom. ii) When non-common sides of a pair of adjacent angles form opposite rays, then the pair forms a linear pair. If two angles form a linear pair and the measure of one angle is 47 degrees, what is the measure of the other angle. If two angles are adjacent, they form a linear pair? The measure of an angle is three times the measurement of its complement. Linear pair of angles - definition Two angles are said to be in a linear pair if they are adjacent to each other, lie on the same side of the line and the sum of their measures is 1 8 0 o. ∠BOC and ∠AOC are linear-pair-angles. Therefore, AB represents a line. Created by. 13. 1 Answer. A Linear Pair is two adjacent angles whose non-common sides form opposite rays. Vertically Opposite Angles When a pair of lines intersect, as shown in the fig. Also, ∠ABC and ∠DBC form a linear pair so. (iv) Unequal supplementary anglesFor line BD ∠ BOC and ∠ COD are in linear pair Therefore, ∠BOC + ∠COD = 180° So, their sum is 180° And, ∠BOC is not equal to ∠COD ∴ ∠BOC & ∠COD are unequal supplementary angles Ex 5.1, 14 In the adjoining figure, name the following pairs of angles. Such angle pairs are called a linear pair.. Angles A and Z are supplementary because they add up to 180°.. Vertical angles: When intersecting lines | {
"domain": "mybrightfuture.org",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339898,
"lm_q1q2_score": 0.8537779124563548,
"lm_q2_score": 0.8807970654616711,
"openwebmath_perplexity": 829.5373305594145,
"openwebmath_score": 0.622346043586731,
"tags": null,
"url": "https://mybrightfuture.org/a0uppzk0/1myldcg.php?94011f=do-adjacent-angles-form-a-linear-pair"
} |
A and Z are supplementary because they add up to 180°.. Vertical angles: When intersecting lines form an X, the angles on the opposite sides of the X are called vertical angles. Find the values of the angles l, p, and q in each of the following questions, ∠DOC = ∠AOE (vertically opposite angles), Pair of Linear Equations in Two Variables, Vedantu This statement is correct. (iii) Does the angles ∠COE and ∠EOD form a linear pair? ∠BOC and ∠AOC are linear-pair-angles. It is known that the angle between the two line segments ME and EN is 180°. Angles ∠ Z W I and ∠ H W I are adjacent angles. (vi) Find the vertically opposite angle of ∠5? In the figure, clearly, the pair $$\angle BOA$$ and $$\angle AOE$$ form adjacent complementary angles. Complete Identify Each Pair Of Angles As Adjacent, Vertical, Complementary, Supplementary, Or A Linear Pair online with US Legal Forms. A linear pair is two angles that add up to be 180o.A linear pair is two adjacent, supplementary angles.Adjacent means they share ONE ray.Supplementary … Add comment More. Anonymous. Supplementary angles: Two angles that add up to 180° (or a straight angle) are supplementary. Relevance. Angle Pairs (Vertical, linear pair, adjacent, complementary & supplementary) STUDY. The two axioms mentioned above form Linear Pair Axioms and are helpful in solving various mathematical problems. In a linear pair, the arms of the angles that are not always common or collinear i.e., they lie on a straight line. A: If two angles form a linear pair, then angles are supplementary. 1 and 2 are adjacent angles. If two parallel lines are intersected by a transversal, then each pair of corresponding angles so formed is (a) Equal (b) Complementary (c) Supplementary (d) None of these Ans : (a) Equal 4. If a point O is taken anywhere on the line segment AB as shown, then the angle between the two line segments AO and OB is a straight angle i.e., 180°. Two adjacent supplementary angles form a linear pair. Here, these | {
"domain": "mybrightfuture.org",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339898,
"lm_q1q2_score": 0.8537779124563548,
"lm_q2_score": 0.8807970654616711,
"openwebmath_perplexity": 829.5373305594145,
"openwebmath_score": 0.622346043586731,
"tags": null,
"url": "https://mybrightfuture.org/a0uppzk0/1myldcg.php?94011f=do-adjacent-angles-form-a-linear-pair"
} |
OB is a straight angle i.e., 180°. Two adjacent supplementary angles form a linear pair. Here, these angles are in linear pair as. Report 1 Expert Answer Best Newest Oldest. If two angles are a linear pair, then they are supplementary. T or F? There are n angles in the polygon, so there are n linear pairs. If Two Angles Form A Linear Pair, The Angles Are Supplementary. Two adjacent supplementary angles form a linear pair. A linear pair is a pair of adjacent, supplementary angles, whihc means they add up to 180 degrees. The measure of an angle is three times the measurement of its complement. 12. Linear Pairs. If two angles form a linear pair, the angles are supplementary. Hence, we can also say that a linear pair of angles is the adjacent angle whose non-common arms are basically opposite rays. Fill in the blanks: If two adjacent angles are supplementary, they form a _____. the term adjacent means next to each other. 1 decade ago. Two adjacent angles are said to form a linear pair angles , if their non-common arms are two opposite rays. In the figure, clearly, the pair $$\angle AOE$$ and $$\angle EOD$$ form adjacent angles that do not form a linear pair. The angles are adjacent, sharing ray BC, and the non-adjacent rays, BA and BD, lie on line AD. (add up to 180 0) ∠BOC + ∠AOC = 180 0 Examples : 1) One of the angles forming a linear-pair is a right angle. Then, find the angle measures. A straight angle is formed when the angle between two lines is 180 degrees. What are not adjacent angles? Two vertical angles are always the same size as each other. adjacent angles are the angles which have same pair of vertex and have one common side. Two angles form a linear pair. Sorry!, This page is not available for now to bookmark. Covid-19 has led the world to go through a phenomenal transition . Similarly, ∠GON and ∠HON form a linear pair and so on. Converse statement inverses statement Contrapositive statement Key Concepts: Terms in this set (12) Adjacent complementary | {
"domain": "mybrightfuture.org",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339898,
"lm_q1q2_score": 0.8537779124563548,
"lm_q2_score": 0.8807970654616711,
"openwebmath_perplexity": 829.5373305594145,
"openwebmath_score": 0.622346043586731,
"tags": null,
"url": "https://mybrightfuture.org/a0uppzk0/1myldcg.php?94011f=do-adjacent-angles-form-a-linear-pair"
} |
statement Contrapositive statement Key Concepts: Terms in this set (12) Adjacent complementary angles (Image) angles that are "next to" each other. a. b. c. Exploration #1: Use this link to explore the relationship with vertical angles. Two adjacent angles are said to form a linear pair of angles, if their non-common arms are two opposite rays. Adjacent Angles• Share a common side• Share the same vertex• Do not share any interior points B A C V Bistro 72 Reviews, 5 Gallon Air Compressor, Clementine Churchill Images, How Old Is Chopper, Allegiant Air Flight Schedules, Counting Video For Kindergarten, Langerhans Cells Function Quizlet, Eine Kleine Nachtmusik Mr Bean, Improvisation Of Melody Brainly, Dynamite Definition Synonyme, Kazimir Malevich Art, | {
"domain": "mybrightfuture.org",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9693242018339898,
"lm_q1q2_score": 0.8537779124563548,
"lm_q2_score": 0.8807970654616711,
"openwebmath_perplexity": 829.5373305594145,
"openwebmath_score": 0.622346043586731,
"tags": null,
"url": "https://mybrightfuture.org/a0uppzk0/1myldcg.php?94011f=do-adjacent-angles-form-a-linear-pair"
} |
Prove that the set of $\mathbb{N} \times \mathbb{N} \times \mathbb{N}$ is countable.
I have seen proofs of $\mathbb{N}\times\mathbb{N}$. The proof by list where you list each element in a pair of elements and then counting them diagonally is the most convincing. I have two thoughts in mind:
1. Write it as a composition of functions. Show that both functions are bijections, so the composition is also a bijection.
2. Show that $\mathbb{N} \times \mathbb{N} \times \mathbb{N}$ has the same cardinality as $\mathbb{N}\times\mathbb{N}$, and $\mathbb{N}\times\mathbb{N}$ has the same cardinality as $\mathbb{N}$.
Generally, I'm having difficulty going from $\mathbb{N}\times\mathbb{N}\times\mathbb{N}$ to $\mathbb{N}\times\mathbb{N}$, since it easy to prove the bijection from $\mathbb{N}\times\mathbb{N}$ to $\mathbb{N}$.
• Youre idea in 1. seems like a good approach. – JJC94 Oct 31 '17 at 0:48
• It's not a proof-explanation if you don't point at a specific proof and ask us to explain it. – Asaf Karagila Oct 31 '17 at 0:51
• Consider the Cantor pairing. – Wuestenfux Oct 31 '17 at 9:42
If you already know that $\Bbb{N\times N}$ is countable, fix a bijection $f\colon\Bbb{N\times N\to N}$. Now consider $g\colon\Bbb{N\times N\times N\to N\times N}$ defined as: $$g(n,m,k)=(n,f(m,k)),$$ or better yet $h\colon\Bbb{N\times N\times N\to N}$ defined as $$h(n,m,k)=f(n,f(m,k))$$ and cut out the middle-man.
As my freshman discrete mathematics professor used to tell us, go home and convince yourself this is correct. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126525529014,
"lm_q1q2_score": 0.8537774178909653,
"lm_q2_score": 0.8723473796562744,
"openwebmath_perplexity": 195.1127876307063,
"openwebmath_score": 0.8474349975585938,
"tags": null,
"url": "https://math.stackexchange.com/questions/2497461/prove-that-the-set-of-mathbbn-times-mathbbn-times-mathbbn-is-counta"
} |
• I can convince myself this is correct, but how can I prove it to a stubborn skeptic? – tigerustin Nov 1 '17 at 2:11
• Slowly and carefully by verifying the definitions of a bijection. – Asaf Karagila Nov 1 '17 at 6:53
• I proved injectivity. How would I prove surjectivity? – tigerustin Nov 1 '17 at 20:21
• Exactly the same. Slowly, carefully and by using the fact that $f$ is already surjective itself. – Asaf Karagila Nov 1 '17 at 20:23
• I really don't understand. Can you explain further please? I don't want to have to start another thread on this question. – tigerustin Nov 2 '17 at 2:10
Why not think in stages? Let $\varphi : \mathbb{N}\times\mathbb{N} \to \mathbb{N}$ denote your favorite bijection. But then
$$\mathbb{N} \times \mathbb{N} \times \mathbb{N} = (\mathbb{N} \times \mathbb{N}) \times \mathbb{N} \approx \varphi(\mathbb{N}\times \mathbb{N}) \times \mathbb{N} = \mathbb{N} \times \mathbb{N} \approx \varphi(\mathbb{N}\times \mathbb{N}) = \mathbb{N}$$ (where, in this context, $=$ means equality, and $\approx$ denotes "of the same cardinality"). You can do this for any number of copies of $\mathbb{N}$ via an induction argument.
Consider $f:\mathbb N \times \mathbb N \times \mathbb N \to \mathbb N$ given by $f(a,b,c)=2^a3^b5^c$
and use the Fundamental theorem of arithmetic for a cute solution.
• Gives an injective mapping. – Wuestenfux Oct 31 '17 at 9:41
• And it is clearly infinite, so... – Andres Mejia Oct 31 '17 at 14:06
• It would be difficult to prove bijectivity of this function? – tigerustin Nov 1 '17 at 2:12
• It’s not bijective. It is an infinite subset of the natural numbers – Andres Mejia Nov 1 '17 at 2:15 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126525529014,
"lm_q1q2_score": 0.8537774178909653,
"lm_q2_score": 0.8723473796562744,
"openwebmath_perplexity": 195.1127876307063,
"openwebmath_score": 0.8474349975585938,
"tags": null,
"url": "https://math.stackexchange.com/questions/2497461/prove-that-the-set-of-mathbbn-times-mathbbn-times-mathbbn-is-counta"
} |
I like to think of 'countable' as 'listable' ... That is, as long as you can create a list of objects and ensure that all elements of some set $S$ are somewhere on that list, then $S$ is countable. To me, the advantage of that kind of thinking is that elements from $S$ may be repeated on the list, and that the list may even contain objects that are not in $S$; as long as every element of $S$ is at least once in the list, it's clear that $S$ is countable. As such, this method avoids having to construct explicit and possibly complicated bijections.
So, how can we create a list of all elements of $\mathbb{N} \times \mathbb{N} \times \mathbb{N}$?
Here is one way:
First, get all triples with elements that sum to $0$: which is just $<0,0,0>$
Now get all those that sum to $1$: $<1,0,0>,<0,1,0>,<0,0,1>$
Then those that sum to $2$, then $3$, etc.
Thus, the list is:
$<0,0,0>,<1,0,0>,<0,1,0>,<0,0,1>,<2,0,0>,<1,1,0>,...$
Since for any $n$ there can only be finitely many triples whose elements sum to $n$, you will eventually get to every triple.
Note that this is of course just the same thing as diagonally going through an array of elements, just now in $3$ dimensions.
• Reminiscent of the method I know for showing the algebraics are countable. Nice. – Kaj Hansen Oct 31 '17 at 2:34
Cantor-Bernstein's Theorems states that if $A$ and $B$ are two sets and there exists two injections $f:A \to B$ and $g:B \to A$ then there is a biyection from $A$ to $B$ (i.e. $A$ and $B$ have the same cardinality).
Let $f:\mathbb{N} \times \mathbb{N} \times \mathbb{N} \to \mathbb{N}$ be defined as $f(m,n,k)=2^n \cdot 3^m \cdot 5^k$, then if $f(m_1,n_1,k_1) = f(m_2,n_2,k_2) \Leftrightarrow 2^{m_1}3^{n_1}5^{k_1}=2^{m_2}3^{n_2}5^{k_2}$, the Fundamental Theroem of Arithmetic shows that $m_1=m_2$, $n_1=n_2$ and $k_1=k_2$. Then $f$ is a injective function. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126525529014,
"lm_q1q2_score": 0.8537774178909653,
"lm_q2_score": 0.8723473796562744,
"openwebmath_perplexity": 195.1127876307063,
"openwebmath_score": 0.8474349975585938,
"tags": null,
"url": "https://math.stackexchange.com/questions/2497461/prove-that-the-set-of-mathbbn-times-mathbbn-times-mathbbn-is-counta"
} |
Next, consider the function $g:\mathbb{N} \to \mathbb{N} \times \mathbb{N} \times \mathbb{N}$ defined by $g(n)=(0,0,n)$, then $$g(n)=g(m) \Leftrightarrow (0,0,n) =(0,0,m) \Leftrightarrow n=m$$ and hence $g$ is injective.
Applying Canotr-Bernstein's Theorem gives that $\mathbb{N} \times \mathbb{N} \times \mathbb{N}$ is countable.
Using induction, you can easily prove this result for the product of any finite number of copies of $\mathbb{N}$. The hardest part of the proof is the base case, which is that $\mathbb{N} \times \mathbb{N}$ is countable. It seems you already have this result.
For the induction hypothesis, assume that $\displaystyle \prod^n \mathbb{N}$ is countable. Now we just need to show that $\displaystyle \prod^{n+1} \mathbb{N}$ is countable. First, note that can write the $(n\!+\!1)$-fold product in the form $\mathbb{N} \times \left( \displaystyle \prod^n \mathbb{N} \right)$. A bijection $\displaystyle f:\prod^n \mathbb{N} \rightarrow \mathbb{N}$ is guaranteed by the induction hypothesis, which we can use to construct a bijection between the $(n\!+\!1)$-fold product and $\mathbb{N} \times \mathbb{N}$:
$$(x_1, x_2, \cdots, x_{n+1}) \mapsto (x_1, f(x_2, x_3, \cdots, x_{n+1}))$$
And $\mathbb{N} \times \mathbb{N}$ is countable per the base case. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126525529014,
"lm_q1q2_score": 0.8537774178909653,
"lm_q2_score": 0.8723473796562744,
"openwebmath_perplexity": 195.1127876307063,
"openwebmath_score": 0.8474349975585938,
"tags": null,
"url": "https://math.stackexchange.com/questions/2497461/prove-that-the-set-of-mathbbn-times-mathbbn-times-mathbbn-is-counta"
} |
# Ways to fill a $n\times n$ square with $1\times 1$ squares and $1\times 2$ rectangles
I came up with this question when I'm actually starring at the wall of my dorm hall. I'm not sure if I'm asking it correctly, but that's what I roughly have:
So, how many ways (pattern) that there are to fill a $n\times n:n\in\mathbb{Z}_{n>0}$ square with only $1\times 1$ squares and $1\times 2$ rectangles?
For example, for a $2\times 2$ square:
• Four $1\times 1$ squares; 1 way.
• Two $1\times 1$ squares and one $1\times 2$ rectangle; $4$ ways total since we can rotate it to get different pattern.
• Two $1\times 2$ rectangles; 2 ways total: placed horizontally or vertically.
$\therefore$ There's a total of $1+4+2=\boxed{7}$ ways to fill a $2\times 2$ square.
So, I'm just wondering if there's a general formula for calculating the ways to fill a $n\times n$ square.
Thanks!
-
+1 for coming up with your own math question. – Sammy Black Apr 11 '13 at 20:58
For $1\times n$ boards, you get the Fibonacci numbers. For $2\times n$ boards it's already a bit harder. You get the recurrence relation $a_n = 3a_{n-1} + a_{n-2} - a_{n-3}$, see oeis.org/A030186 – azimut Apr 11 '13 at 21:49
A hand count for $n=3$ yields $131$ ways, and a search for $1,7,131$ yields OEIS sequence A028420, the "number of monomer-dimer tilings of an $n\times n$ chessboard". The entry doesn't provide a formula (so it's likely that none is known), but some references.
-
so it's like a program? – user67258 Apr 11 '13 at 21:18
See also oeis.org/A210662 which gives all the rectangles, not just the squares. – Charles Apr 11 '13 at 21:32
@herderp: Sorry, I don't understand that question. What's like a program? – joriki Apr 11 '13 at 22:12
I thought the sequence is computed by a computer program – user67258 Apr 11 '13 at 22:24
If you just used $1\times2$ rectangles, then this is same as finding the number of matchings in the $m \times n$ rectangle graph, and a formula for that has been given by Kastelyn: | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126457229185,
"lm_q1q2_score": 0.8537774119328476,
"lm_q2_score": 0.8723473796562744,
"openwebmath_perplexity": 358.1395556863249,
"openwebmath_score": 0.9462553858757019,
"tags": null,
"url": "http://math.stackexchange.com/questions/358755/ways-to-fill-a-n-times-n-square-with-1-times-1-squares-and-1-times-2-recta"
} |
$$\sqrt{\left|\prod_{j=1}^{m}\prod_{k=1}^{n} \left(2 \cos \frac{\pi j}{m+1} + 2i\cos \frac{\pi k}{n+1}\right)\right|}$$
This was done, by mapping the number to the square root of the determinant of a weighted adjacency matrix of the graph.
If you include $1 \times 1$ squares, you essentially need to find the sum over all subgraphs (think of placing a $1\times 1$ square as deleting that vertex) of the $m \times n$ graph, and for each subgraph, the determinant approach still works, I believe, but might not have a nice closed form.
You can find a nice exposition for the $1\times 2$ case in the first chapter here: http://users.ictp.it/~pub_off/lectures/lns017/Kenyon/Kenyon.pdf
-
We can probably give some upper and lower bounds though. Let $t_n$ be the possible ways to tile an $n\times n$ in the manner you described. At each square, we may have $5$ possibilities: either a $1\times 1$ square, or $4$ kinds of $1\times 2$ rectangles going up, right, down, or left. This gives you the upper bound $t_n \leq 5^{n^2}$.
For the lower bound, consider a $2n\times 2n$ rectangle, and divide it to $n^2$ $2\times 2$ blocks, starting from the top left and putting a $2\times 2$ square, putting another $2\times 2$ square to its right and so on... For each of these $2\times 2$ squares, we have $5$ possible distinct ways of tiling. This gives the lower bound $t_{2n} \geq 7^{n^2}$. Obviously, $t_{2n+1} \geq t_{2n},\,n \geq 1$, and therefore $t_n \geq 7^{\lfloor \frac{n}{2}\rfloor ^2}$.
Hence, \begin{align} 7^{\lfloor \frac{n}{2}\rfloor ^2} \leq t_n \leq 5^{n^2}, \end{align} or roughly (if $n$ is even), \begin{align} (7^{1/4})^{n^2} \leq t_n \leq 5^{n^2}. \end{align} BTW, $7^{1/4} \geq 1.6$. So, at least we know $\log t_n \in \Theta(n^2)$.
Note: Doing the $3\times 3$ case for the lower bound, we get $(131)^{1/9} \geq 1.7$ which is slightly better.
- | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126457229185,
"lm_q1q2_score": 0.8537774119328476,
"lm_q2_score": 0.8723473796562744,
"openwebmath_perplexity": 358.1395556863249,
"openwebmath_score": 0.9462553858757019,
"tags": null,
"url": "http://math.stackexchange.com/questions/358755/ways-to-fill-a-n-times-n-square-with-1-times-1-squares-and-1-times-2-recta"
} |
# Why is the eigenvector of a covariance matrix equal to a principal component?
If I have a covariance matrix for a data set and I multiply it times one of it's eigenvectors. Let's say the eigenvector with the highest eigenvalue. The result is the eigenvector or a scaled version of the eigenvector.
What does this really tell me? Why is this the principal component? What property makes it a principal component? Geometrically, I understand that the principal component (eigenvector) will be sloped at the general slope of the data (loosely speaking). Again, can someone help understand why this happens?
-
Short answer: The eigenvector with the largest eigenvalue is the direction along which the data set has the maximum variance. Meditate upon this.
Long answer: Let's say you want to reduce the dimensionality of your data set, say down to just one dimension. In general, this means picking a unit vector $u$, and replacing each data point, $x_i$, with its projection along this vector, $u^T x_i$. Of course, you should choose $u$ so that you retain as much of the variation of the data points as possible: if your data points lay along a line and you picked $u$ orthogonal to that line, all the data points would project onto the same value, and you would lose almost all the information in the data set! So you would like to maximize the variance of the new data values $u^T x_i$. It's not hard to show that if the covariance matrix of the original data points $x_i$ was $\Sigma$, the variance of the new data points is just $u^T \Sigma u$. As $\Sigma$ is symmetric, the unit vector $u$ which maximizes $u^T \Sigma u$ is nothing but the eigenvector with the largest eigenvalue. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126438601956,
"lm_q1q2_score": 0.8537774038117792,
"lm_q2_score": 0.8723473730188543,
"openwebmath_perplexity": 206.79197546820686,
"openwebmath_score": 0.8532469868659973,
"tags": null,
"url": "http://math.stackexchange.com/questions/23596/why-is-the-eigenvector-of-a-covariance-matrix-equal-to-a-principal-component?answertab=oldest"
} |
If you want to retain more than one dimension of your data set, in principle what you can do is first find the largest principal component, call it $u_1$, then subtract that out from all the data points to get a "flattened" data set that has no variance along $u_1$. Find the principal component of this flattened data set, call it $u_2$. If you stopped here, $u_1$ and $u_2$ would be a basis of the two-dimensional subspace which retains the most variance of the original data; or, you can repeat the process and get as many dimensions as you want. As it turns out, all the vectors $u_1, u_2, \ldots$ you get from this process are just the eigenvectors of $\Sigma$ in decreasing order of eigenvalue. That's why these are the principal components of the data set.
-
Phenomenal answer. Thank you. – Ryan Mar 28 '11 at 11:55
Some informal explanation:
Covariance matrix $C_y$ (it is symmetric) encodes the correlations between variables of a vector. In general a covariance matrix is non-diagonal (i.e. have non zero correlations with respect to different variables).
But it's interesting to ask, is it possible to diagonalize the covariance matrix by changing basis of the vector?. In this case there will be no (i.e. zero) correlations between different variables of the vector.
Diagonalization of this symmetric matrix is possible with eigen value decomposition. You may read 'A Tutorial on Principal Component Analysis'by Jonathon Shlens to get a good understanding. (pages 6-7)
- | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126438601956,
"lm_q1q2_score": 0.8537774038117792,
"lm_q2_score": 0.8723473730188543,
"openwebmath_perplexity": 206.79197546820686,
"openwebmath_score": 0.8532469868659973,
"tags": null,
"url": "http://math.stackexchange.com/questions/23596/why-is-the-eigenvector-of-a-covariance-matrix-equal-to-a-principal-component?answertab=oldest"
} |
# Using mathematical induction prove that $11 \cdot 3^n + 3 \cdot 7^n - 6$ is divisible by 8
Prove that $\phi(n) =11 \cdot 3^n + 3 \cdot 7^n - 6$ is divisible by 8 for all $n \in N$.
Base: $n = 0$
$8 | 11 + 3 - 6$ is obvious.
Now let $\phi(n)$ be true we now prove that is also true for $\phi(n+1)$.
So we get $11 \cdot 3^{n+1} + 3 \cdot 7^{n+1} - 6$ and I am stuck here, just can't find the way to rewrite this expression so that I can use inductive hypothesis or to get that one part of this sum is divisible by 8 and just prove by one more induction that the other part is divisible by 8.
For instance, in the last problem I had to prove that some expression a + b + c is divisible by 9. In inductive step b was divisible by 9 only thing I had to do is show that a + c is divisible by 9 and I did that with another induction, and I don't see if I can do the same thin here.
Suppose $11*3^n + 3*7^n - 6 = 8k$
The $11*3^{n+1} + 3*7^{n+1} - 6 = 11*3^n*3 + 3*7^n*7 - 6$
$=3(11*3^n + 3*7^n-2) + 4*3*7^n$
$= 3(11*3^n + 3*7^n - 6) + 4*3*7^n + 12$
$= 3(8k) + 4(3*7^n + 3)$; $3*7^n$ is odd and $3$ is odd so $(3*7^n + 3)$ is even.
$= 3(8k) + 8(\frac{3*7^n + 3}2) = 8(3k + \frac{3*7^n + 3}2)$.
======
Actually I like and am inspired by Bill Dubuques answer.
We want to prove $\phi(n) = 11*3^n + 3*7^n - 6 \equiv 0 \mod 8$
And we know $\phi(n) = 11*3^n + 3*7^n - 6 \equiv 3*3^n + 3*(-1)^n -6 = 3^{n+1} + 3*(-1)^n - 6 \mod 8$.
So it's a matter of showing $f(n) = 3^{n+1} + 3(-1)^n \equiv 6 \mod 8$.
And if we notice $f(n+2) = 3^{n+3} + 3(-1)^{n+2} = 3^{n+1}*9 + 3(-1)^{n} \equiv 3^n + 3(-1)^{n}= f(n) \mod 8$.
So it's now just a matter of showing for $f(0) \equiv f(1) \equiv 6 \mod 8$.
Which is easily verified $3^1 + 3*(-1)^0 =3+3= 6$ and $3^2 + 3*(-1)^1 = 9 -3 = 6$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.978712645102011,
"lm_q1q2_score": 0.8537774032710418,
"lm_q2_score": 0.8723473713594992,
"openwebmath_perplexity": 222.46163476834505,
"openwebmath_score": 0.7768850326538086,
"tags": null,
"url": "https://math.stackexchange.com/questions/2115633/using-mathematical-induction-prove-that-11-cdot-3n-3-cdot-7n-6-is-div"
} |
Which is easily verified $3^1 + 3*(-1)^0 =3+3= 6$ and $3^2 + 3*(-1)^1 = 9 -3 = 6$
• Yap, that's it. Thank you, just what I was looking for. – stigma6 Jan 27 '17 at 7:15
• You want a secret confession? When I began answering I didn't know how it would turn out. But I know I had to factor $f(n+1) = manipulate(f(n)) = manipulate(8k)$ and I had faith that $manipulate(8k) = 8j$ and I just chewed on it to see what would happen. That's how a lot of figuring induction proofs. You know $f(n) = Property(t)$ and $f(n+1) = manipulate(f(n))=manipulate(Property(t))$ and know you want $manipulate(Property(t))=Property(s)$. Then you just gum and chew away until you get it. – fleablood Jan 27 '17 at 7:36
${\rm mod}\ 8\!:\ f(n\!+\!2)\equiv f(n)\,$ by $\,a\equiv 3,7\,\Rightarrow\,a^{\large 2}\equiv 1\,\Rightarrow\,a^{\large n+2}\equiv a^{\large n}.\,$ Thus $\,8\mid f(n)\iff 8\mid f(n\!+\!2),\,$ hence by (strong/parity) induction, it is true for all $n$ $\iff$ it is true for the base cases $\,n=0,1.$
• @Downvoter The downvote is puzzling. If something is not clear then please feel welcome to ask questions and I will be happy to elaborate. This is one of the easiest ways to prove it, – Bill Dubuque Jan 26 '17 at 22:40
• If congruences are unknown then we can eliminate them, viz. show that $8$ divides $\,f(n\!+\!2)-f(n)\,$ because $8$ divides $\,3^{\large n+2}-3^{\large n} = (3^{\large 2}-1)3^{\large n} = 8\cdot 3^n,\,$ and similarly $8$ divides $\,7^{\large n+2}-7^{\large n}.\ \$ – Bill Dubuque Jan 26 '17 at 23:04
Setup the same as your current work:
$\dots$
$\dots = 11\cdot 3^{n+1}+3\cdot 7^{n+1}-6 = 11\cdot 3\cdot 3^{n}+ 3\cdot 7\cdot 7^n - 6$
$=33\cdot 3^n + 21\cdot 7^n - 6 = (11+22)\cdot 3^n + (3 + 18)\cdot 7^n - 6$
$=\underbrace{11\cdot 3^n + 3\cdot 7^n - 6}_{\text{should be familiar}} + \underbrace{22\cdot 3^n + 18\cdot 7^n}_{\text{unknown}}$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.978712645102011,
"lm_q1q2_score": 0.8537774032710418,
"lm_q2_score": 0.8723473713594992,
"openwebmath_perplexity": 222.46163476834505,
"openwebmath_score": 0.7768850326538086,
"tags": null,
"url": "https://math.stackexchange.com/questions/2115633/using-mathematical-induction-prove-that-11-cdot-3n-3-cdot-7n-6-is-div"
} |
Now, what can we say about $22\cdot 3^n+18\cdot 7^n$? Anything? You say in a previous example, you had to run a second induction proof to finish, might that be useful here?
• fyi: your answer was downvoted 1 second before mine, so it doesn't appear that the downvoter took the time to carefully consider the answers. – Bill Dubuque Jan 26 '17 at 22:50 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.978712645102011,
"lm_q1q2_score": 0.8537774032710418,
"lm_q2_score": 0.8723473713594992,
"openwebmath_perplexity": 222.46163476834505,
"openwebmath_score": 0.7768850326538086,
"tags": null,
"url": "https://math.stackexchange.com/questions/2115633/using-mathematical-induction-prove-that-11-cdot-3n-3-cdot-7n-6-is-div"
} |
Why does $z\mapsto \exp(-z^2)$ have an antiderivative on $\mathbb C$?
Why does $z\mapsto \exp(-z^2)$ have an antiderivative on $\mathbb C$?
So far I have seen the following results:
1. If $f\colon U\to\mathbb C$ has an antiderivative $F$ on $U$ then $\displaystyle\int_\gamma f(z)~\mathrm dz=F(\gamma(b))-F(\gamma(a))$ along a smooth curve $\gamma\colon[a,b]\to\mathbb C$.
2. If $f$ has an antiderivative then $\displaystyle\int_\gamma f(z)~\mathrm dz$ depends only on the start and end point of the curve $\gamma$.
3. If $f$ has an antiderivative, then $\displaystyle\oint_\gamma f(z)~\mathrm dz=0$ for all closed curves $\gamma$.
My problem is that I could use those results to show a function has no antiderivative (like $1/z$ yielding $2\pi\mathrm i\neq 0$ on $\partial B_r(0)$) but I am unsure what might work the other way round. What might be useful here in terms of complex analysis?
EDIT
There is a follow-up question based on the problem above.
Use the result from above to calculate
$$\int_{-\infty}^\infty\exp(-x^2-\mathrm ikx)\,\mathrm dx, k\in\mathbb R.$$
I guess something constructive like GEdgar's suggestion might be useful here, isn't it?
EDIT 2
Here is my solution for the follow-up question
\begin{align*} \int_{-\infty}^\infty \exp(-x^2-\mathrm ikx)\,\mathrm dx &= \int_{-\infty}^\infty \exp(-(x^2+\mathrm ikx))\,\mathrm dx \\ &= \int_{-\infty}^\infty \exp\left(-\left(x^2+\mathrm ikx-\frac{k^2}{4}+\frac{k^2}{4}\right)\right)\,\mathrm dx \\ &= \int_{-\infty}^\infty \exp\left(-\left(\left(x+\frac{1}{2} \mathrm ik\right)^2+\frac{k^2}{4}\right)\right)\,\mathrm dx \\ &= \exp\left(-\frac{k^2}{4}\right)\int_{-\infty}^\infty \exp\left(-\left(x+\frac{1}{2} \mathrm ik\right)^2\right)\,\mathrm dx \\ &= \exp\left(-\frac{k^2}{4}\right)\int_{-\infty}^\infty \exp(-t^2)\,\mathrm dt \\ &= \exp\left(-\frac{k^2}{4}\right)\sqrt{\pi} \end{align*}
Another way. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126451020108,
"lm_q1q2_score": 0.8537773935268504,
"lm_q2_score": 0.8723473614033683,
"openwebmath_perplexity": 265.2539088837637,
"openwebmath_score": 0.9993290901184082,
"tags": null,
"url": "https://math.stackexchange.com/questions/1766653/why-does-z-mapsto-exp-z2-have-an-antiderivative-on-mathbb-c"
} |
Another way.
$\exp(-z^2)$ is an entire function. Its power series at the origin converges for all $z$.
Take the anti-derivative of that series term-by-term. It still converges for all $z$. (Use the formula for radius of convergence.) So the series of antiderivatives is an antiderivative for $\exp(-z^2)$.
That argument works for all entire functions. In this case: $$f(z) = \sum_{n=0}^\infty \frac{(-1)^n}{n!} z^{2n} \\ F(z) :=\sum_{n=0}^\infty \frac{(-1)^n}{n!}\;\frac{z^{2n+1}}{2n+1} \\ F'(z) = f(z)$$
The composition of functions with an antiderivative has an antiderivative.
$\exp$ has an antiderivative because it is its own derivative (and hence its own antiderivative) everywhere.
$z \mapsto -z$ has an antiderivative $z \mapsto \frac{-z^2}{2}$.
$z \mapsto z^2$ has antiderivative $z \mapsto \frac{z^3}{3}$.
• Really? $\exp(\exp(x))$ doesn't have an antiderivative though, does it? – Lundborg May 1 '16 at 12:17
• @Neutronic Not in closed form, certainly, but there is a function which differentiates to $\exp \circ \exp$ everywhere. – Patrick Stevens May 1 '16 at 12:18
• @PatrickStevens ... Still, we need a proof of that fact. – GEdgar May 1 '16 at 13:38
Define, for some $z_0\in \mathbb{C}$ $$g(z)=\int_{z_0}^z e^{-t^2}dt$$ Now for any $2$ homotopic (within the domain where $e^{-z^2}$ is analytic) curves the value of this integral will be the same. Since $e^{-z^2}$ is analytic and $\mathbb{C}$ is simply connected, we find that the value of $g(z)$ is independent of the chosen contours. Hence this is a well defined function of $z$, and clearly $g'=f$.
more details: We know that holomorphic differentials are closed, i.e. $d(fdz)=0$. We also know that on a simply connected domain closed forms are exact. This means we can write, using stokes theorem, $$\int_{\gamma}f dz = \int_{\gamma}dg=\int_{\partial\gamma}g=g(\gamma(1))-g(\gamma(0))=g(z)-g(z_0)$$ which shows that the integral does not depend on the path $\gamma$ we chose. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126451020108,
"lm_q1q2_score": 0.8537773935268504,
"lm_q2_score": 0.8723473614033683,
"openwebmath_perplexity": 265.2539088837637,
"openwebmath_score": 0.9993290901184082,
"tags": null,
"url": "https://math.stackexchange.com/questions/1766653/why-does-z-mapsto-exp-z2-have-an-antiderivative-on-mathbb-c"
} |
• So far we haven't been talking about homotopy so I find it difficult to fully understand your proof. I have a feeling you are trying to pick arbitrary curves which start and end point are fixed and showing that the integrals along those curves is always the same. Can you confirm this? I am struggling to understand how you deduce this exactly. – Christian Ivicevic May 1 '16 at 13:04
• Yes that is what I am doing. I'll include a bit more detail in my answer – user2520938 May 1 '16 at 13:07 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9787126451020108,
"lm_q1q2_score": 0.8537773935268504,
"lm_q2_score": 0.8723473614033683,
"openwebmath_perplexity": 265.2539088837637,
"openwebmath_score": 0.9993290901184082,
"tags": null,
"url": "https://math.stackexchange.com/questions/1766653/why-does-z-mapsto-exp-z2-have-an-antiderivative-on-mathbb-c"
} |
# solve linear congruence | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
We need now aplly the above recursive relation: Finally, solutions to the given congruence are, $$x \equiv 61, 61 + 211, 61 \pmod{422} \equiv 61, 272 \pmod{422}.$$. Necessary cookies are absolutely essential for the website to function properly. This says we can take x = (105*7 + 65)/50 = 16. Solving linear congruences is analogous to solving linear equations in calculus. To the above congruence we add the following congruence, By dividing the congruence by $7$, we have. The solution to the congruence $ax \equiv b \pmod m$ is now given with: $$x \equiv v + t \cdot m’ \pmod m, \quad t= 0, 1, \ldots, d-1.$$. So if g does divide b and there are solutions, how do we find them? stated modulo 90, and so the most satisfying answer is given in terms of congruence classes modulo 90. The solution of a linear congruence can be found in the Wolfram Language using Reduce[a*x == b, x, Modulus -> m]. Since we already know how to solve linear Diophantine equations in two variables, we can apply that knowledge to solve linear congruences. We must now see how many distinct solutions are there. solve the linear congruence step by step. Let x 0 be any concrete solution to the above equation. However, if we divide both sides of the congru- Solve the linear system sa+ tm= 1: Then sba+ tbm= b: So sba b (mod m) gives the solution x= sb. We find y = 4. Since we already know how to solve linear Diophantine equations in two variables, we can apply that knowledge to solve linear congruences. This problem has been solved! Linear Congruence Video. The algorithm says we should solve 100y â¡ -13(mod 7). A Linear Congruence is a congruence mod p of the form where,,, and are constants and is the variable to be solved for. most likely will be coming back here in the future, Thank you! Here, "=" means the congruence symbol, i.e., the equality sign with three lines. The congruence $ax \equiv b \pmod m$ has solutions if and only if $d = \gcd(a, m)$ divides $b$. If (a;m) = 1, then the congruence ax b | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
m$ has solutions if and only if $d = \gcd(a, m)$ divides $b$. If (a;m) = 1, then the congruence ax b mod mphas exactly one solution modulo m. Constructive. Then the solutions to ax â¡ b (mod m) are x = y + tm/g where t = 0, 1, 2, â¦, g-1. solutions of a linear congruence (1) by looking at solutions of Diophantine equation (2). We can repeat this process recursively until we get to a congruence that is trivial to solve. Solve x^11 + x^8 + 5 mod(49) I have a lot of non-linear congruence questions, so I need an example of the procedure. If u 1 and u 2 are solutions, then au 1 b (mod m) and au 2 b (mod m) =)au 1 au 2 (mod m) =)u 1 u Solve The Linear Congruence Step By Step ; Question: Solve The Linear Congruence Step By Step . Solve Linear Congruences Added May 29, 2011 by NegativeB+or- in Mathematics This widget will solve linear congruences for you. Start Here; Our Story; Hire a Tutor; Upgrade to Math Mastery. $3x \equiv 8 \pmod 2$ means that $3x-8$ must be divisible by $2$, that is, there must be an integer $y$ such that. Find all solutions to the linear congruence $5x \equiv 12 \pmod {23}$. Solve the following system of linear congruences: From the first linear congruence there exists a such that: Substituting this into the second linear congruence gives us: Notice that , and so there exists a solution. Then x 0 ≡ … Let d = gcd(c,m), and choose q, r 2Z such that c = dq and m = d r. If b is a solution to (1), then it is also a If $d \nmid b$, then the linear congruence $ax \equiv b \pmod m$ has no solutions. 1 point Solve the linear congruence 2x = 5 (mod 9). Example 1. Existence of solutions to a linear congruence. // Example: To solve € … Since 7 and 100 are relatively prime, there is a unique solution. Thanks a bunch, Your email address will not be published. Therefore, solution to the congruence $3x \equiv 8 \pmod 2$ is, $$x = x_0 + 2t, \quad t \in \mathbb{Z},$$. A linear congruence is the problem of finding an integer x satisfying, for specified integers a, | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
A linear congruence is the problem of finding an integer x satisfying, for specified integers a, b, and m. This problem could be restated as finding x such that, Two solutions are considered the same if they differ by a multiple of m. (It’s easy to see that x is a solution if and only if x + km is a solution for all integers k.). Linear Congruence Calculator. First, suppose a and m are relatively prime. Thus: Hence our solution in least residue is 7 (mod 23). The algorithm can be formalized into a procedure suitable for programming. Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. Solving the congruence a x ≡ b (mod m) is equivalent to solving the linear Diophantine equation a x – m y = b. See the answer. Your email address will not be published. The result is closely related to the Euclidean algorithm. One or two coding examples would’ve been great, though =P, this really helpful for my project. Since $\gcd(6,8) = 2$ and $2 \nmid 7$, there are no solutions. We can calculate this using the division algorithm. The calculations are somewhat involved. This is a linear Diophantine equation and it has a solution if and only if $d = \gcd(a, m)$ divides $b$. Theorem 1. If y solves this new congruence, then x = (my + b)/ a solves the original congruence. In particular, (1) can be rewritten as This field is denoted by $\mathbb{Z}_p$. This is progress because this new problem is solving a congruence with a smaller modulus since a < m. If y solves this new congruence, then x = (my + b)/a solves the original congruence. Example. By the Euler’s theorem, $$a^{\varphi (m)} \cdot b \equiv b \pmod m.$$, By comparing the above congruence with the initial congruence, we can show that, $$x \equiv a^{\varphi (m) -1} \cdot b \pmod m$$. The linear congruence The result is closely related to the Euclidean algorithm. Solving | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
b \pmod m$$. The linear congruence The result is closely related to the Euclidean algorithm. Solving Linear Congruence by Finding an Inverse. Although Bill Cook's answer is completely, 100% correct (and based on the proof of the Chinese Remainder Theorem), one can also work with the congruences successively; we know from the CRT that a solution exists. This category only includes cookies that ensures basic functionalities and security features of the website. Recall that since $(31,24)=1$ and $1|12$ there is exactly one incongruent solution modulo $24.$ To find this solution let’s use the definition of congruence, … Multiply the rst congruence by 2 1 mod 7 = 4 to get 4 2x 4 5 (mod 7). The CRT is used solve systems of congruences of the form $\rm x\equiv a_i\bmod m_{\,i}$ for distinct moduli $\rm m_{\,i}$; in our situation, there is only one variable and only one moduli, but different linear congruences, so this is not the sort of problem where CRT applies. Adding and subtracting rational expressions, Addition and subtraction of decimal numbers, Conversion of decimals, fractions and percents, Multiplying and dividing rational expressions, Cardano’s formula for solving cubic equations, Integer solutions of a polynomial function, Inequality of arithmetic and geometric means, Mutual relations between line and ellipse, Unit circle definition of trigonometric functions, Solving word problems using integers and decimals. The linear congruence equation ax = b (mod n) may be rewritten as ax1 = b - nx2 where x1, x2 -E- Z. That works in theory, but it is impractical for large m. Cryptography applications, for example, require solving congruences where m is extremely large and brute force solutions are impossible. Gauss illustrates the Chinese remainder theorem on a problem involving calendars, namely, "to find the years that have a certain period number with respect to the solar and lunar cycle and the Roman indiction." We first put the congruence ax â¡ b (mod m) in a | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
solar and lunar cycle and the Roman indiction." We first put the congruence ax â¡ b (mod m) in a standard form. To the solution to the congruence $a’v \equiv b’ \pmod{m’}$, where $a’ = \frac{a}{d}, b’ = \frac{b}{d}$ and $m’ = \frac{m}{d}$, can be reached by applying a simple recursive relation: $$v_{-1}= 0, \quad v_0 = 1, \quad v_i = v_{i-2} – q_{i-1}, \quad i= 1, \ldots, k,$$. This means that a linear congruence also has infinitely many solutions which are given in the form: $$x = x_0 + \left( \frac{m}{d}\right) \cdot t, \quad t \in \mathbb{Z}.$$. With the increase in the number of congruences, the process becomes more complicated. Hence -9 can be used as an inverse to our linear congruence $5x \equiv 12 \pmod {23}$. Finally, again using the CRT, we can solve the remaining system and obtain a unique solution modulo € [m 1,m 2]. Example 4. If b is divisible by g, there are g solutions. Update: Here are the posts I intended to write: systems of congruences, quadratic congruences. If d does divide b, and if x 0is any solution, then the general solution is given by x = x We look forward to exploring the opportunity to help your company too. Menu. Also, we assume a < m. If not, subtract multiples of m from a until a < m. Now solve my â¡ –b (mod a). Linear Congruences ax b mod m Theorem 1. That help us the … Let's use the division algorithm to find the inverse of modulo : Hence we can use as our inverse. The equation 3x==75 mod 100 (== means congruence), input 3x into Variable and Coeffecient, input 100 into modulus, and input 75 into the last box. Required fields are marked *. 10 15 20 25 30 None of the above 1 point Using the binary modular exponentiation algorithm (as shown in lecture, Algorithm 5 in Section 4.2) to … So the solutions are 16, 37, 58, 79, and 100. Given the congruence, Suppose that $\gcd(a, m) =1$. That is, assume g = gcd(a, m) = 1. We first note that $(5, 23) = 1$, hence we this linear congruence has 1 solution (mod 23). For another example, 8x â¡ | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
$(5, 23) = 1$, hence we this linear congruence has 1 solution (mod 23). For another example, 8x â¡ 2 (mod 10) has two solutions, x = 4 and x = 9. Linear Congruence Calculator. Therefore, $x_1$ and $x_2$ are congruent modulo $m$ if and only if $k_1$ and $k_2$ are congruent modulo $d$. Thus: Hence for some , . Then first solve the congruence (a/g)y â¡ (b/g) (mod (m/g)) using the algorithm above. Theorem 2. The algorithm above says we can solve this by first solving 21y â¡ -13 (mod 10), which reduces immediately to y â¡ 7 (mod 10), and so we take y = 7. If we need to solve the congruence $ax \equiv b \pmod p$, we must first find the greatest common divisor $d= \gcd(a,m)$ by using the Euclidean algorithm. So, we restrict ourselves to the context of Diophantine equations. Rather, this is linear algebra. The brute force solution would be to try each of the numbers 0, 1, 2, â¦, m-1 and keep track of the ones that work. Solve the following congruence: We must first find $\gcd(422, 186)$ by using the Euclidean algorithm: Therefore, $\gcd(422, 186) = 2$. Proposition 5.1.1. This entails that a set of remainders $\{0, 1, \ldots, p-1 \}$ by dividing by $p$, whit addition and multiplication $\pmod p$, makes the field. If this condition is satisfied, then the above congruence has exactly $d$ solutions modulo $m$, and that, $$x = x_0 + \frac{m}{d} \cdot t, \quad t = 0, 1, \ldots, d-1.$$. Previous question Next question Get more help from Chegg. Thanks :) If the number $m =p$ is a prime number, and if $a$ is not divisible by $p$, then the congruence $ax \equiv b \pmod p$ always has a solution, and that solution is unique. Now substitute for x in the second congruence: 3(6+7t) 4 (mod 8). First, let’s solve 7x â¡ 13 (mod 100). Example 2. In the table below, I have written x k first, because its coefficient is greater than that of y. In this case, $\overline{v} \equiv v_k \pmod m’$ is a solution to the congruence $a’ \overline{v} \equiv 1 \pmod{m’}$, so $v \equiv b’ v_k | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
\pmod m’$ is a solution to the congruence $a’ \overline{v} \equiv 1 \pmod{m’}$, so $v \equiv b’ v_k \pmod{m’}$ is the solution to the congruence $a’v \equiv b’ \pmod{m’}$. You can verify that 7*59 = 413 so 7*59 â¡ 13 (mod 100). By finding an inverse, solve the linear congruence $31 x\equiv 12 \pmod{24}.$ Solution. It is possible to solve the equation by judiciously adding variables and equations, considering the original equation plus the new equations as a system of linear … But opting out of some of these cookies may affect your browsing experience. 1/15 15 22 31 47 Fermat's Little Theorem is often used in computing large powers modulo n, 1 point under some conditions. By subtracting obtained equations we have: It follows: $x – x_0 = 2t, t \in \mathbb{Z}$. I intend to write posts in the future about how to solve simultaneous systems of linear congruences and how to solve quadratic congruences. For example, 8x â¡ 3 (mod 10) has no solution; 8x is always an even integer and so it can never end in 3 in base 10. Let $a$ and $m$ be natural numbers, and $b$ an integer. We also use third-party cookies that help us analyze and understand how you use this website. Let , and consider the equation (a) If , there are no solutions. Email: donsevcik@gmail.com Tel: 800-234-2933; The most important fact for solving them is as follows. Then x = (100*4 + 13)/7 = 59. My colleagues and I have decades of consulting experience helping companies solve complex problems involving data privacy, math, statistics, and computing. It turns out x = 9 will do, and in fact that is the only solution. Which of the following is a solution for x? We assume a > 0. Since gcd(50, 105) = 5 and 65 is divisible by 5, there are 5 solutions. So we first solve 10x â¡ 13 (mod 21). Then $x_0 \equiv b \pmod m$ is valid. For example, we may want to solve 7x â¡ 3 (mod 10). Solution to a linear congruence equation is equivalent to finding the value of a fractional congruence, for which a greedy-type algorithm | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
is equivalent to finding the value of a fractional congruence, for which a greedy-type algorithm exists. the congruences whose moduli are the larger of the two powers. These cookies do not store any personal information. Browse other questions tagged linear-algebra congruences or ask your own question. Solve the following congruence: $$x \equiv 5^{\varphi(13) -1} \cdot 8 \pmod{13}.$$, Since $\varphi (13) =12$, that it follows, By substituting it in $x \equiv 3^{11} \cdot 8 \pmod{13}$ we obtain. Since $\frac{m}{d}$ divides $m$, that by the theorem 6. Proof. Example 1. For example 25x = 15 (mod 29) may be rewritten as 25x1 = 15 - 29x2. Our rst goal is to solve the linear congruence ax b pmod mqfor x. Unfortu-nately we cannot always divide both sides by a to solve for x. A linear congruence is an equation of the form. This simpli es to 5t 2 (mod 8), which we solve by multiplying both sides by The answer to the first question depends on the greatest common divisor of a and m. Let g = gcd(a, m). We have $a’ = \frac{186}{2} = 93$, $b’ = \frac{374}{2} = 187$ and $m’ = \frac{422}{2} = 211$. In this way we obtain the congruence which also specifies the class that is the solution. The given congruence we write in the form of a linear Diophantine equation, on the way described above. This website uses cookies to improve your experience while you navigate through the website. Now what if the numbers a and m are not relatively prime? The method of transformation of coefficients consist in the fact that to the given equation we add or subtract a well selected true congruence. Solutions we can write in the equivalent form: $$x_1 = 61 + 422t, \quad x_2 = 272 + 422t, \quad t \in \mathbb{Z}.$$, The Euler’s method consist in the fact that we use the Euler’s theorem. In the second example, the order is reversed because the coefficient of the x k is smaller than the coefficient of the y. and that is the solution to the given congruence. However, linear congruences don’t always have a | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
y. and that is the solution to the given congruence. However, linear congruences don’t always have a unique solution. If b is not divisible by g, there are no solutions. Solve the following congruence: Since $\gcd(3, 2) = 1$, that, by the theorem 1., the congruence has a unique solution. With modulo, rather than talking about equality, it is customary to speak of congruence. 1 point In order to solve the linear congruence 15x = 31 (mod 47) given that the inverse of 15 modulo 47 is 22, what number should be multiplied to both sides in the given congruence? Get 1:1 help now from expert Advanced Math tutors (b) If , there are exactly d distinct solutions mod m.. Observe that Hence, (a) follows immediately from the corresponding result on linear … Solution: We have gcd(42,90) = 6, so there is a solution since 6 is a factor of 12. Here we use the algorithm to solve: 5x−3y=1 (5x≡1 (mod 3), which is easily solved by testing. first place that I’ve understood it, after looking through my book and all over the internet This means that there are exactly $d$ distinct solutions. The one particular solution to the equation above is $x_0 = 0, y_0 = -4$, so $3x_0 – 2y_0 = 8$ is valid. The complete set of solutions to our original congruence can be found by adding multiples of 105/5 = 21. This was really helpful. You also have the option to opt-out of these cookies. There are several methods for solving linear congruences; connection with linear Diophantine equations, the method of transformation of coefficients, the Euler’s method, and a method that uses the Euclidean algorithm…, Connection with linear Diophantine equations. It is mandatory to procure user consent prior to running these cookies on your website. Theorem. Linear CongruencesSimultaneous Linear CongruencesSimultaneous Non-linear CongruencesChinese Remainder Theorem - An Extension Theorem (5.6) If d = gcd(a;n), then the linear congruence ax b mod (n) has a solution if and only if d jb. If this condition is met, then | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
linear congruence ax b mod (n) has a solution if and only if d jb. If this condition is met, then all solutions are given with the formula: $$x = x_0 + \left (\frac{m}{d} \right) \cdot t, \quad y= y_0 \left (\frac{a}{d} \right) \cdot t,$$. Solving the congruence 42x ≡ 12 (mod 90) is equivalent to solving the equation 42x= 12+90qfor integers xand q. Suppose a solution exists. If we need to solve a system of three linear congruences with one unknown, then we need first solve a system of two linear congruences, and then see which of the obtained solutions also satisfy the third congruence. linear congruences (in one variable x). Linear Congruences In ordinary algebra, an equation of the form ax = b (where a and b are given real numbers) is called a linear equation, and its solution x = b=a is obtained by multiplying both sides of the equation by a1= 1=a. I enjoyed your article but impore you to give more examples in simpler forms, thank you for explaining this thoroughly and easy to understand Expert Answer . For this purpose, we take any two solutions from that set: $$x_1 = x_0 + \left( \frac{m}{d}\right) \cdot k_1,$$, $$x_2 = x_0 + \left (\frac{m}{d}\right) \cdot k_2.$$, $$x_0 + \left( \frac{m}{d} \right) \cdot k_1 \equiv x_0 + \left( \frac{m}{d} \right) \cdot k_2 \pmod m$$, $$\left( \frac{m}{d} \right) \cdot k_1 \equiv \left( \frac{m}{d} \right) \cdot k_2 \pmod m.$$. 24 8 pmod 16q. This website uses cookies to ensure you get the best experience on our website. Example 3. Substituting this into our equation for yields: Thus it follows that , so is the solution t… Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. Now let’s find all solutions to 50x â¡ 65 (mod 105). For daily tweets on algebra and other math, follow @AlgebraFact on Twitter. If it is now $x_1$ any number from the equivalence class determined with $x_0$, then from $x_1 \equiv x_0 \pmod m$ | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
any number from the equivalence class determined with $x_0$, then from $x_1 \equiv x_0 \pmod m$ follows that $ax_1 \equiv ax_0 \pmod m$, so $ax_1 \equiv b \pmod m$, which means that $x_1$ is also the solution to $ax \equiv \pmod m$. How do I solve a linear congruence equation manually? This reduces to 7x= 2+15q, or 7x≡ … Let $x_0$ be any concrete solution to the above equation. Therefore, if $ax \equiv b \pmod m$ has a solution, then there is infinitely many solutions. The algorithm can be formalized into a procedure suitable for programming. A linear congruence $ax \equiv b \pmod m$ is equivalent to. In an equation a x ≡ b (mod m) the first step is to reduce a and b mod m. For example, if we start off with a = 28, b = 14 and m = 6 the reduced equation would have a = 4 and b = 2. The notion of congruences was first introduced and used by Gauss in his Disquisitiones Arithmeticae of 1801. Lemma. In case the modulus is prime, everything you know from linear algebra goes over to systems of linear congruences. Systems of linear congruences can be solved using methods from linear algebra: Matrix inversion, Cramer's rule, or row reduction. x ≡ (mod )--- Enter a mod b statement . Construction of number systems – rational numbers. is the solution to the initial congruence. This simpli es to x 6 (mod 7), so x = [6] 7 or x = 6 + 7t, where t 2Z. Linear Congruences. Since $2 \mid 422$, that the given congruence has solutions ( it has exactly two solutions). If not, replace ax â¡ b (mod m) with –ax â¡ –b (mod m). For instance, solve the congruence $6x \equiv 7 \pmod 8$. Featured on Meta “Question closed” … The proof for r > 2 congruences consists of iterating the proof for two congruences r – 1 times (since, e.g., € ([m 1,m 2],m 3)=1). Section 5.1 Solving Linear Congruences ¶ Our first goal to completely solve all linear congruences $$ax\equiv b$$ (mod $$n$$). A modular equation is an equation (or a system of equation, with at least one unknown variable) valid according to a | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
is an equation (or a system of equation, with at least one unknown variable) valid according to a linear congruence (modulo/modulus). In general, we may have to apply the algorithm multiple times until we get down to a problem small enough to solve easily. These cookies will be stored in your browser only with your consent. We can repeat this process recursively until we get to a congruence that is trivial to solve. Find more at https://www.andyborne.com/math See how to solve Linear Congruences using modular arithmetic. Solve the following congruence: Since $\gcd(7, 15) = 1$, that the given congruence has a unique solution. Linear Congruence Calculator. where $k$ is the least non-zero remainder and $q_i$ are quotients in the Euclidean algorithm. Since 100 â¡ 2 (mod 7) and -13 â¡ 1 (mod 7), this problem reduces to solving 2y â¡ 1 (mod 7), which is small enough to solve by simply sticking in numbers. Solving the congruence $ax \equiv b \pmod m$ is equivalent to solving the linear Diophantine equation $ax – my = b$. Let’s talk. Adding multiples of 105/5 = 21 is mandatory to procure user consent prior to running these on! B ( mod 23 ) procedure suitable for programming systems of linear Added. G = gcd ( a ; m ) with three lines least non-zero remainder and b. Can apply that knowledge to solve € … linear congruences ( in one variable )! But opting out of some of these cookies on your website 42,90 ) = and... Of congruences, the order is reversed because the coefficient of the two powers exploring the to... First solve the congruence by 2 1 mod 7 = 4 and =. Complete set of solutions to 50x â¡ 65 ( mod ( m/g ) ) using the algorithm can be into. Value of a fractional congruence, for which a greedy-type algorithm exists ) 1 under... X in the solve linear congruence example, 8x â¡ 2 ( mod 10 ) has two solutions, how do solve... ≡ ( mod 100 ) necessary cookies are absolutely essential for the website to function properly to... 2 $and$ m $is equivalent to solving the | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
essential for the website to function properly to... 2 $and$ m $is equivalent to solving the congruence which also specifies the class that the. Most important fact for solving them is as follows congruences don ’ t have! \Pmod m$ be any concrete solution to the given congruence we write in the of... For daily tweets on algebra and other Math, statistics, and fact! T always have a unique solution 37, 58, 79, and computing d. A standard form. $solution because the coefficient of the website to help your company too the is! Write posts in the future about how to solve linear Diophantine equations g, there are solutions. Whose moduli are the larger of the y 2 1 mod 7 ) )! Equality, it is customary to speak of congruence this widget will solve linear (. Are quotients in the Euclidean algorithm not, replace ax â¡ b ( mod m ) congruence can used... Point under some conditions non-zero remainder and$ q_i $are quotients in the second congruence: (., 1 point solve the linear congruence$ ax \equiv b \pmod m $has no.! ¡ 13 ( mod 7 ), though =P, this really for... 7 ( mod ( m/g ) ) using the algorithm can be formalized into a procedure for...:$ x – x_0 = 2t, t \in \mathbb { }! To a linear congruence $6x \equiv 7 \pmod 8$ = 2t, t \in \mathbb Z... We also use third-party cookies that ensures basic functionalities and security features of the website congruence equation manually congruence 1. 23 } $422$, there are no solutions you use this website uses to. An inverse, solve the linear congruence is an equation of the website 7 $, then the$!, by dividing the congruence 42x ≡ 12 ( mod m ) in a standard solve linear congruence. 'S use the division algorithm to find the inverse of modulo: Hence solution... Out x = ( 100 * 4 + 13 ) /7 = 59 4 ( mod 100 ) 7 8... How you use this website uses cookies to ensure you get the experience! And 100 consulting experience helping companies solve complex problems involving data privacy, Math follow. \Nmid b $an integer solution in least residue | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
complex problems involving data privacy, Math follow. \Nmid b $an integer solution in least residue is 7 ( mod )! Of coefficients consist in the fact that to the given congruence has solutions ( has! And 100 some of these cookies on your website we find them daily tweets on algebra other. 58, 79, and computing â¡ 2 ( mod m ) know how solve! Integers xand q specifies the class that is the only solution consider the equation 42x= 12+90qfor integers xand q,...$ \gcd ( 6,8 ) = 1, then the congruence, for which greedy-type! Will be stored in your browser only with your consent } { }. G solutions // example: to solve simultaneous systems of linear congruences 5x... Great, though =P, this really helpful for my project 7 $, that the! To systems of linear congruences start Here ; our Story ; Hire a Tutor ; to. Result is closely related to the Euclidean algorithm that ensures basic functionalities and security of! In computing large powers modulo n, 1 point solve the congruence ( 1 ) by at! Solutions, x = 9 will do, and$ 2 \nmid 7 $, then there a! Helping companies solve complex problems involving data privacy, Math, statistics, and$ q_i $are in... The number of solve linear congruence, the process becomes more complicated, x = 9, there. Quotients in the future about how to solve easily ask your own.! G does divide b and there are no solutions solutions ) solve linear congruence.! To systems of congruences, quadratic congruences by NegativeB+or- in Mathematics this widget will solve linear congruences ( one! Though =P, this really helpful for my project is smaller than the coefficient of following... Fermat 's Little Theorem is often used in computing large powers modulo n, 1 point under some conditions (. -- - Enter a mod b statement * 59 = 413 so 7 * 59 = so! 50, 105 ) = 1 how many distinct solutions are there Math... Here ; our Story ; Hire a Tutor ; Upgrade to Math Mastery though... 65 is divisible by 5, there are no solutions equation we add the following is factor., | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
though... 65 is divisible by 5, there are no solutions equation we add the following is factor., and computing b ) if, there are g solutions point under some.. Our solution in least residue is 7 ( mod 7 ): 3 ( mod m )$... 100 * 4 + 13 ) /7 = 59 * 59 = 413 so 7 * 59 â¡ 13 mod... In terms of congruence 105/5 = 21 concrete solution to a congruence that is to... 9 solve linear congruence do, and 100 are relatively prime start Here ; our Story ; Hire a Tutor Upgrade. Companies solve complex problems involving data privacy, Math, statistics, and consider the equation 42x= 12+90qfor xand! The numbers a and m are relatively prime ) 1 point solve the linear congruence by. The y equality, it is customary to speak of congruence solve 7x â¡ 3 ( mod )... - Enter a mod b statement your own question in two variables, we can apply that to... Forward to exploring the opportunity to help your company too that $\gcd ( a, )! The solution to the above congruence we write in the second example, have. ( 100 * 4 + 13 ) /7 = 59 given in terms of congruence classes 90! Is greater than that of y your company too sign with three lines ) if, there infinitely... A unique solution for solving them is as follows - Enter a mod b statement repeat this recursively! Advanced Math tutors the congruences whose moduli are the larger of the congru- other. Tagged linear-algebra congruences or ask your own question multiples of 105/5 = 21 the value a! Example 25x = 15 - 29x2 navigate through the website ; question: solve the congruence ≡... 105 ) = 1 now see how many distinct solutions are 16, 37,,. Suitable for programming this category only includes cookies that ensures basic functionalities and security features of form. Example, 8x â¡ 2 ( mod 100 )$ x – x_0 = 2t, t \mathbb..., t \in \mathbb { Z } _p $statistics, and$ 2 \mid $! About how to solve easily stated modulo 90 1/15 15 22 31 47 Fermat 's Theorem... To Math Mastery q_i$ are quotients in the second example, the equality sign with three lines | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
To Math Mastery q_i$ are quotients in the second example, the equality sign with three lines but out. Your experience while you navigate through the website to function properly is as follows x ≡ ( mod 10 has... 50, 105 ) = 1 13 ) /7 = 59 function properly reversed because the coefficient of two... Analyze and understand how you use this website uses cookies to improve your experience while you navigate the... Be rewritten as 25x1 = 15 - 29x2: systems of linear congruences and how to solve to... 4 to get 4 2x 4 5 ( mod ( m/g ) ) using the algorithm above knowledge... Ve been great, though =P, this really helpful for my project original congruence can be used an!, 58, 79, and consider the equation ( 2 ) 6x. = 4 and x = ( solve linear congruence * 4 + 13 ) /7 = 59 Here ; our ;. This means that there are no solutions 4 + 13 ) /7 = 59 since gcd ( a, )... Means the congruence 42x ≡ 12 ( mod 100 ) 4 2x 4 5 ( mod )... Theorem 6 you can verify that 7 * 59 â¡ 13 ( mod )... \Equiv 7 \pmod 8 \$ posts in the second congruence: 3 ( 6+7t 4... In a standard form 1, then there is a unique solution x x_0! Y â¡ ( b/g ) ( mod 7 ) is not divisible by,. The future about how to solve 7x â¡ 3 ( 6+7t ) 4 ( mod 90 ) is equivalent solving! Exactly two solutions ) means the congruence ax b mod mphas exactly one solution modulo m... 1 ) by looking at solutions of Diophantine equation ( 2 ) the congruences whose moduli are posts..., 105 ) that there are no solutions 22 31 47 Fermat Little! | {
"domain": "karamarine.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290930537121,
"lm_q1q2_score": 0.8537650137551713,
"lm_q2_score": 0.8791467785920306,
"openwebmath_perplexity": 413.5897726235827,
"openwebmath_score": 0.7182279825210571,
"tags": null,
"url": "http://karamarine.com/be-born-dtmwpm/solve-linear-congruence-bd4eea"
} |
# Monotonically decreasing/increasing
1. Oct 11, 2014
### BOAS
1. The problem statement, all variables and given/known data
Plot each function and decide, based on the plot whether or not it is monotonically increasing/decreasing or strictly monotonically increasing/decreasing.
f(x) = -5
2. Relevant equations
3. The attempt at a solution
I can plot this function no problem, and show algebraically why it fits the definition of monotonically increasing and monotonically decreasing.
My question is, how do I justify this 'based on the plot'?
The next part of the question is to show it algebraically, but graphically i'm not really sure why my answer is correct...
2. Oct 11, 2014
### Ray Vickson
You really need to show more: what exact definitions are you using for "monotonically increasing/decreasing"? You seem to be making a distinction between monotonically increasing and strictly monotonically increasing, etc. Your answer could be right or wrong, depending on these details.
3. Oct 11, 2014
### Staff: Mentor
The question distinguishes between monotonically increasing/decreasing and strictly monotonically increasing/decreasing. In the latter, the graph of the function would have to be trending up (mon. increasing) or down (mon. decreasing). From your plot, which should show a horizontal line, which you could characterize as both monotically decreasing and monotonically increasing.
4. Oct 11, 2014
### BOAS
I have attached the definitions I am using as a picture. I will explain how i'm using them to come to my result.
From this, I say that the function $f(x) = -5$ is monotonically increasing and monotonically decreasing because for all $x_{1}, x_{2} \in \mathbb{R}$ where $x_{1} < x_{2}, f(x_{1}) \leq f(x_{2})$.
Likewise, for all $x_{1}, x_{2} \in \mathbb{R}$ where $x_{1} < x_{2}, f(x_{1}) \geq f(x_{2})$.
5. Oct 11, 2014
### Staff: Mentor
I figured that these were the definitions you were using. I agree with your answer.
6. Oct 11, 2014
### vela | {
"domain": "physicsforums.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.971129092218133,
"lm_q1q2_score": 0.853765011483069,
"lm_q2_score": 0.8791467770088162,
"openwebmath_perplexity": 994.0720642106213,
"openwebmath_score": 0.5020829439163208,
"tags": null,
"url": "https://www.physicsforums.com/threads/monotonically-decreasing-increasing.775576/"
} |
6. Oct 11, 2014
### vela
Staff Emeritus
Is your question essentially "How can a flat graph be considered increasing or decreasing?"
7. Oct 11, 2014
### BOAS
that is at the heart of it.
8. Oct 11, 2014
### vela
Staff Emeritus
It's just how it is. As long as the function satisfies the definition, we say it's monotonically increasing or decreasing, even if it may run counter to our everyday sense of the words. Your intuition aligns with strictly monotonically increasing or decreasing.
9. Oct 11, 2014
### Staff: Mentor
Note that the definitions for monotonically increasing and decreasing include the possibility that f(x1) = f(x2). IOW, they include the possiblity of graphs that are flat. The "strictly" definitions don't include this. | {
"domain": "physicsforums.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.971129092218133,
"lm_q1q2_score": 0.853765011483069,
"lm_q2_score": 0.8791467770088162,
"openwebmath_perplexity": 994.0720642106213,
"openwebmath_score": 0.5020829439163208,
"tags": null,
"url": "https://www.physicsforums.com/threads/monotonically-decreasing-increasing.775576/"
} |
# Area of region bounded by two parabolas using double integrals
"Let R be the region in the first quadrant bounded by the graphs of the parabolas $y=2x^2$, $y=9-x^2$ and the line x=0. Express the area of region R:
(i) Integrating first with respect to y, and then with respect to x
(ii) Integrating first with respect to x, and then with respect to y "
I have tried sketching the two curves, and expressing the double integral. However, my sketch and the double integral itself is quite different from the solution. Please have a look at my attempt and the solution below:
The Solution:
Could someone please help me understand this solution? I feel like I am missing a very important concept about double integrals. Any help would be highly appreciated.
• The area that you drew is not correct. It should extend upward until the $9-x^2$ parabola. And that is only one of two solutions. Mar 31 '16 at 9:01
• Thanks for the reply. But after extending the graph, I would still get a similar shape to the one I currently have. The solution's graph is different. Could it be incorrect? Mar 31 '16 at 19:30
If I well understand your question maybe that this intuitive interpretation can help.
When we calculate an area by a double integral, we subdivide this area in a sum of little ''area elements''. If we chose these elements as $dy dx$ or $dx dy$, this means that the elements are little rectangles of sides $dy$ and $dx$.
If we chose the order $dydx$ this means that we want to count these elements starting from ''vertical'' strips in which (in your case) the side $dy$ start from $2x^2$ and goes to $9-x^2$, so these values are the limits of the sum, and becomes the limits of the integration in $dy$, than we sum all these strips summing for the oter side $dx$ has limits $o$ and $\sqrt{3}$, and this gives the double integral: $$\int_0^{\sqrt{3}}\int_{2x^2}^{9-x^2}dydx$$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290905469752,
"lm_q1q2_score": 0.8537650007888421,
"lm_q2_score": 0.8791467675095292,
"openwebmath_perplexity": 150.274623287278,
"openwebmath_score": 0.8568595051765442,
"tags": null,
"url": "https://math.stackexchange.com/questions/1721513/area-of-region-bounded-by-two-parabolas-using-double-integrals"
} |
If we change the order to $dx dy$ we count the area elements starting from horizontal stripes, and in this case the side $dx$ start from $x=0$ and goes to $\sqrt{y/2 }$ if $y\le 6$, and to $\sqrt{9-y }$ if $6<y\le 9$. So you have the other double integral that is divided in two parts.
• Thank you very much for this explanation; it makes perfect sense to me. But how do I go about sketching the projection? I have a habit of always sketching the region before setting up the double integrals, Apr 1 '16 at 13:34
• I've added a figure. I hope it's useful. Apr 1 '16 at 13:50
• Perfect! Thanks you :) Apr 3 '16 at 8:26
The first graph you draw is good, but you paint incorrectly. You should have painted from left: $x=0$, from up: $y = 9-x^2$, and from down: $y = 2x^2$.
The graph in the solution is not correct, i think, but the double integrals are true.
• I thought so, the solution graph is incorrect. Thanks for responding Mar 31 '16 at 19:31 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9711290905469752,
"lm_q1q2_score": 0.8537650007888421,
"lm_q2_score": 0.8791467675095292,
"openwebmath_perplexity": 150.274623287278,
"openwebmath_score": 0.8568595051765442,
"tags": null,
"url": "https://math.stackexchange.com/questions/1721513/area-of-region-bounded-by-two-parabolas-using-double-integrals"
} |
# Rock drawing possibility [closed]
In the latest episode of Survivor there were 6 people and they had to draw rocks from a bag. In the bag were 6 rocks, 5 white rocks and 1 black rock. First person drew a rock and kept it in his hand. Then the second person drew a rock. Last person took the only rock that left.
Then they all showed what they got at the same time.
Was the possibility to draw a black rock for each person 1/6 or what was it?
First point of view is they can all draw the rocks at the same time without changing the outcome.
Another way of seeing this is to compute the probability that the $k$th person picks the black stone. The $k-1$ persons before must have picked a white stone, and the $k$th picks the black. The probability is $$\frac56\times\frac45\times\dots\times \frac{6-(k-1)}{6-(k-1)+1}\times \frac{1}{6-(k-1)} = \frac16$$ (telescopic product).
Yes.
For the first person it's obviously $1/6$.
For the second it is either $1/5$ if the first person drew a white ($5/6$), or $0$ if the first person drew black already ($1/6$). So $p($Person 2 draws black$)=5/6 \times 1/5+1/6 \times 0=1/6$.
Logic continues and gives $1/6$ for each person.
Yes, the probability of drawing the black rock is 1/6 for each person. This is obvious for the first person. Intuitively "by symmetry," it should be clear that everyone has the same probability 1/6 of drawing the black rock.
One more formal way to look at it is that there are $6! = 720$ orders in which the six rocks can be drawn. Let's number the rocks 1 through 6, with #1 being the black rock. Some examples among the 720 ways are 123456, 321456, 135246, 654132, and so on.
Suppose you are third in line to draw. Then you would get the black rock for outcomes such as 321456 and 541326. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. Yes\n2. Yes",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9888419694095655,
"lm_q1q2_score": 0.8537578669298872,
"lm_q2_score": 0.863391617003942,
"openwebmath_perplexity": 295.82811814572585,
"openwebmath_score": 0.6926605105400085,
"tags": null,
"url": "https://math.stackexchange.com/questions/2029326/rock-drawing-possibility/2029337"
} |
How many ways are there to arrange the rocks so that the black rock is third? Put the black rock in the 3rd position, and then there are 5! ways to arrange the other five rocks. So the number of ways for you to get the rock are 5! = 120.
Then the probability you get the black rock is $5!/6! = 120/720 = 1/6.$
Addendum: While I have been typing this and taking holiday phone calls, I see that two other answers have appeared. I have up-voted them both, as being reasonable alternative methods to show the same thing. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. Yes\n2. Yes",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9888419694095655,
"lm_q1q2_score": 0.8537578669298872,
"lm_q2_score": 0.863391617003942,
"openwebmath_perplexity": 295.82811814572585,
"openwebmath_score": 0.6926605105400085,
"tags": null,
"url": "https://math.stackexchange.com/questions/2029326/rock-drawing-possibility/2029337"
} |
# Rate of flow Question
How would you solve a general problem of a steady stream of leakage:
Water leaks at a rate
$$r(t)= 20 \sqrt{3} \sec^2 (2t) \, \frac{\text{gallons}}{\text{hour}}.$$
At time 0, there are 50 gallons of water.
So how should I find a function that represents the amount remaining at a certain time, say $\pi/6$ hours?
I understand to take the integral of $r(t)$, but how would you proceed then?
As a follow up question, how long will it take the sludge to leak completely? I got an answer of 2x = infinity...
• Hi! Welcome to MSE. I've editted your post for clarity without (hopefully) altering meaning. Best wishes. – Mark Fantini Feb 3 '14 at 0:32
• Thanks. This makes it better. – user235059 Feb 3 '14 at 3:40
• You are welcome. :) – Mark Fantini Feb 3 '14 at 9:29
• As a follow up question, how long will it take the sludge to leak completely? I got an answer of 2x = infinity... – user235059 Feb 5 '14 at 17:55
Hint: You are given the if $W(t)$ is the amount of water in the tank, your function $r(t)$ is $W'(t)$. So if you integrate $$\int W'(t) dt=\int r(t) dt$$ that will give you $W(t)$, the amount of water at time $t$. Use the fact that $W(0)=50$. Then the question is just asking what is $W(\frac{\pi}{6})$. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9888419677654415,
"lm_q1q2_score": 0.8537578602965756,
"lm_q2_score": 0.8633916117313211,
"openwebmath_perplexity": 317.1884998664008,
"openwebmath_score": 0.8909657001495361,
"tags": null,
"url": "https://math.stackexchange.com/questions/661425/rate-of-flow-question/661430"
} |
• Not quite: since $\ r(t) \$ is a volume rate of change, the integral represents the amount of water added to or lost from the volume in the tank. This is why we must include an "initial condition" for the actual amount of water in the tank in order to obtain a specific function for the tank's contents. – colormegone Feb 3 '14 at 0:42
• That's why I said to include $W(0)=50$! – Kyle L Feb 4 '14 at 7:23
• The rate function is a way of writing a differential equation, $\ \frac{dV}{dt} \ = \ r(t) \ .$ This does not give us exclusively a function for the rate of water volume change in the tank, but only the rate at which water is flowing. What I was taking issue with is that the integral can also describe the amount of water accumulating elsewhere, such as another tank, the outside environment, etc. Since the rate function given by OP is described as leakage, you need to write your integral as $\int - r(t) \ dt \$ in order to produce the function you call $\ W(t) \ .$ – colormegone Feb 4 '14 at 8:29
The "Net Change Theorem" tells us that the volume of water lost from the container is
$$\Delta V (T) \ = \ \int_0^{T} \ - r(t) \ \ dt \ ,$$
the negative sign being inserted since we are told this is "leakage", and thus a reduction of water volume in the container. What remains in the container at time $\ T \$ is then
$$V(T) \ = \ 50 \ + \ \Delta V(T) \ .$$
[We add the change in volume, which is a negative change for this problem.] | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9888419677654415,
"lm_q1q2_score": 0.8537578602965756,
"lm_q2_score": 0.8633916117313211,
"openwebmath_perplexity": 317.1884998664008,
"openwebmath_score": 0.8909657001495361,
"tags": null,
"url": "https://math.stackexchange.com/questions/661425/rate-of-flow-question/661430"
} |
Example Sequence $\{ b_n \}$ with $\lim_{n \rightarrow \infty} nb_n = 0$ but $\sum_{n=1}^{\infty} b_n$ diverges.
As the title states, I'm looking for an example of a strictly decreasing sequence of positive numbers with the properties that $$\lim_{n \rightarrow \infty} nb_n = 0$$ but $$\sum_{n=1}^{\infty} b_n$$ diverges.
My efforts have been unsuccessful so far. I know that nothing of the form
$$b_n = \frac{1}{n^p}$$
works, as $\lim_{n \rightarrow \infty} nb_n = 0$ if $p>1$, also implying that the series will converge via p-test. I've also tried more creative sequences like $$b_n = \frac{\sin(\frac{1}{n})}{n}$$ but still no luck.
More than a specific example, is there a certain strategy I should employ to find such an example? I was thinking the sequence must go to zero must faster than $n$ goes to infinity, but not fast enough for the series to converge.
• Check out $1/(n \log(n))$. Unfortunately there is not a lot of strategy with some of these questions. It requires knowing a good handful of examples that you can assemble for future use. This is one of the most classic examples in calculus / analysis. – Cameron Williams Jun 5 '18 at 21:47
Hint :
Look at Bertrand series.
Bertrand series are the series of the form : $$\frac{1}{n^{\alpha}(\log n)^{\beta}}$$ and you know that this serie converges only if : $\alpha > 1$ or ($\alpha = 1$ and $\beta > 1$).
With $$s_n:=\sum_{k=1}^n b_k,$$ try to achieve that $s_n\to \infty$, but sloooowly.
If $s_n= n$, then $b_n=1$ which is too large.
If $s_n=\sqrt n$, then $b_n\sim \frac1{\sqrt n}$, which makes $nb_n\sim\sqrt n$, still too large.
If $s_n=\ln n$, then $b_n\sim \frac 1n$, still too large: $nb_n\sim 1$.
In general, if $s_n=f(n)$ then $b_n\sim f'(n)$.
Now what if $s_n=\ln\ln n$? Then $b_n\sim \frac1{n\ln n}$ and $nb_n\sim \frac1{\ln n}\to 0$!
Let $p_n$ denote the $n$-th prime number. Then $$\sum_{n\in\Bbb N}\frac{1}{p_n}=\infty\tag{1}$$
But $$\lim_{n\to\infty}\frac{n}{p_n}=0\tag{2}$$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9888419707248646,
"lm_q1q2_score": 0.8537578593758572,
"lm_q2_score": 0.8633916082162403,
"openwebmath_perplexity": 136.84542803771276,
"openwebmath_score": 0.9650533199310303,
"tags": null,
"url": "https://math.stackexchange.com/questions/2809429/example-sequence-b-n-with-lim-n-rightarrow-infty-nb-n-0-but-s"
} |
But $$\lim_{n\to\infty}\frac{n}{p_n}=0\tag{2}$$
For $(1)$, see Divergence of the sum of the reciprocals of the primes.
For $(2)$, this is the Prime Number Theorem: $p_n\sim n\log n$. See for instance this discussion. This is also another way to prove $(1)$.
Using the idea in this answer: Is there a slowest rate of divergence of a series?
We set $D_n = 1/n$, so $\sum_{n = 1}^{\infty}D_n$ converges. Write $H_n = \sum_{k = 1}^{n}D_n$, the $n$th harmonic number. Finally, let $d_n = D_n/H_{n-1} = \frac{1}{nH_{n-1}}$. We can easily show that $d_n$ is positive and decreasing and $nd_n \rightarrow 0$, and that answer shows that $\sum_{n = 2}^{\infty}d_n$ diverges.
Asymptotically this answer is no different from $b_n = \frac{1}{n\ln(n)}$ given in other responses, but I thought this would be a nice fact to share. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9888419707248646,
"lm_q1q2_score": 0.8537578593758572,
"lm_q2_score": 0.8633916082162403,
"openwebmath_perplexity": 136.84542803771276,
"openwebmath_score": 0.9650533199310303,
"tags": null,
"url": "https://math.stackexchange.com/questions/2809429/example-sequence-b-n-with-lim-n-rightarrow-infty-nb-n-0-but-s"
} |
# Fourier Transform Integration
I have a Fourier transform to complete with the definition of the Fourier Transform.
Let $$\phi$$ be defined as follows. $$\tag{1} \phi(x) = Ne^{-\frac{(x-x_0)^2}{a^2}}e^{ik_0x}$$
I must complete the Fourier transform of the function.
The definition of a Fourier transform is as follows.
$$\tag{2} \hat f(k) = \frac{1}{\sqrt{2\pi}}\int f(x) e^{-ikx}dx$$
To compute the Fourier transform we must evaluate the following integral with $$\phi$$ substituted into (2).
$$\tag{3} \hat\phi(k) = \frac{1}{\sqrt{2\pi}}\int \phi(x) e^{-ikx}dx$$
$$\tag{4} \hat\phi(k) = \frac{1}{\sqrt{2\pi}}\int Ne^{-\frac{(x-x_0)^2}{a^2}}e^{ik_0x} e^{-ikx}dx$$
I have tried completing this integral with completion of squares. I cannot find a way to finish this integral. How can I solve this integral? | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.993096162133108,
"lm_q1q2_score": 0.8537287749269412,
"lm_q2_score": 0.8596637541053281,
"openwebmath_perplexity": 355.25525227469467,
"openwebmath_score": 0.8833812475204468,
"tags": null,
"url": "https://math.stackexchange.com/questions/2528538/fourier-transform-integration"
} |
• You were correct to pursue completing the square. You will need to evaluate a Gaussian integral thereafter. And to be rigorous, you need to deform the contour back to the real line by appealing to Cauchy's Integral Theorem. And that is about it. – Mark Viola Nov 20 '17 at 2:00
• After completing the square, $\hat\phi$ will become the following integral. $$\frac{1}{\sqrt{2\pi}}\int Ne^{-(x-\frac{2x_0 + ik_0a^2}{2}}e^{\frac{(2x_0+ik_0a^2)^2}{2}} e^{\frac{x_0^2}{a^2}}dx$$ – Jeremy Nov 20 '17 at 2:33
• There is an error in the previous comment. $\hat\phi$ will be defined as follows. $$\frac{1}{\sqrt{2\pi}}\int Ne^{-(x-\frac{2x_0 + ik_0a^2}{2})^2}e^{\frac{(2x_0+ik_0a^2)^2}{2}} e^{\frac{x_0^2}{a^2}}dx$$ – Jeremy Nov 20 '17 at 2:39
• After evaluating the Gaussian integral $\hat\phi$ is defined as follows. $$\hat\phi(k) = \frac{1}{\sqrt{2}}\int e^{\frac{(2x_0+ik_0a^2)^2}{2}} e^{\frac{x_0^2}{a^2}}dx$$ – Jeremy Nov 20 '17 at 2:41
• I substituted $u = x-\frac{(2x_0 + ik_0a^2)}{2}$ in. After squaring both sides and changing the integral to polar coordinates, I found that the integral evaluated to $\sqrt{\pi}$. This equation I have arrived at does not match the provided solution. I may have made an error in evaluating the Gaussian integral. Where did I go wrong? – Jeremy Nov 20 '17 at 2:46
First, enforce the substitution $x-x_0\to x$ so that
\begin{align} \int_{-\infty }^\infty e^{-\frac1{\alpha^2}(x-x_0)^2-i(k-k_0)x}\,dx&=e^{-i(k-k_0)x_0}\int_{-\infty }^\infty e^{-\frac1{\alpha^2}x^2-i(k-k_0)x}\,dx \end{align}
Then, enforce the substitution $x/\alpha\to x$ so that
$$e^{-i(k-k_0)x_0}\int_{-\infty }^\infty e^{-\frac1{\alpha^2}x^2-ikx}\,dx=\alpha e^{-i(k-k_0)x_0}\int_{-\infty }^\infty e^{-x^2-i(k-k_0)\alpha x}\,dx$$
Completing the square reveals
$$\alpha e^{-i(k-k_0)x_0}\int_{-\infty }^\infty e^{-x^2-i(k-k_0)\alpha x}\,dx=\alpha e^{-i(k-k_0)x_0}e^{-((k-k_0)\alpha/2)^2}\int_{-\infty }^\infty e^{-(x-i(k-k_0)\alpha /2)^2}\,dx$$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.993096162133108,
"lm_q1q2_score": 0.8537287749269412,
"lm_q2_score": 0.8596637541053281,
"openwebmath_perplexity": 355.25525227469467,
"openwebmath_score": 0.8833812475204468,
"tags": null,
"url": "https://math.stackexchange.com/questions/2528538/fourier-transform-integration"
} |
Enforcing the substitution $x-i(k-k_0)\alpha/2\to x$ yields
\begin{align}\alpha e^{-i(k-k_0)x_0}e^{-((k-k_0)\alpha/2)^2}\int_{-\infty }^\infty e^{-(x-i(k-k_0)\alpha /2)^2}\,dx&=\alpha e^{-i(k-k_0)x_0}e^{-((k-k_0)\alpha/2)^2}\\\\ &\times \int_{-\infty-i(k-k_0)\alpha/2 }^{\infty-i(k-k_0)\alpha/2} e^{-x^2}\,dx\end{align}
Applying Cauchy's Integral Theorem, we can deform the contour back onto the real line to obtain
$$\alpha e^{-i(k-k_0)x_0}e^{-((k-k_0)\alpha/2)^2}\int_{-\infty-i(k-k_0)\alpha/2 }^{\infty-i(k-k_0)\alpha/2} e^{-x^2}\,dx=\alpha e^{-((k-k_0)\alpha/2)^2}\underbrace{\int_{-\infty}^{\infty} e^{-x^2}\,dx}_{=\sqrt\pi}$$
Putting it all together, we find that
$$\int_{-\infty }^\infty e^{-\frac1{\alpha^2}(x-x_0)^2-i(k-k_0)x}\,dx=\alpha e^{-i(k-k_0)x_0}\sqrt\pi e^{-((k-k_0)\alpha/2)^2}$$
• I think the same techniques you've applied in your solution can be applied to the original problem. I think you have misread the problem statement. You have two exponentials with $(x-x_0)$ in both. Please note in the original problem statement that one exponential contains $(k-k_0)$ – Jeremy Nov 20 '17 at 3:45
• Jeremy, I edited on 20 November in response to your posted comment herein. Please let me know how I can improve my answer. I really want to give you the best answer I can. And feel free to both up vote and accept an answer as you see fit. Happy holidays! -Mark – Mark Viola Dec 18 '17 at 18:40
• Please feel free to up vote and accept an answer as you see fit. And Happy Holidays! – Mark Viola Dec 24 '17 at 17:29
• Your solution is incorrect by a factor of $\frac1{\sqrt{2}}$. – Jeremy Dec 29 '17 at 22:48
• @Jeremy Why do you say that? – Mark Viola Dec 29 '17 at 22:50 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.993096162133108,
"lm_q1q2_score": 0.8537287749269412,
"lm_q2_score": 0.8596637541053281,
"openwebmath_perplexity": 355.25525227469467,
"openwebmath_score": 0.8833812475204468,
"tags": null,
"url": "https://math.stackexchange.com/questions/2528538/fourier-transform-integration"
} |
# Number of closed walks on an $n$-cube
Is there a known formula for the number of closed walks of length (exactly) $r$ on the $n$-cube? If not, what are the best known upper and lower bounds?
Note: the walk can repeat vertices.
-
Yes (assuming a closed walk can repeat vertices). For any finite graph $G$ with adjacency matrix $A$, the total number of closed walks of length $r$ is given by
$$\text{tr } A^r = \sum_i \lambda_i^r$$
where $\lambda_i$ runs over all the eigenvalues of $A$. So it suffices to compute the eigenvalues of the adjacency matrix of the $n$-cube. But the $n$-cube is just the Cayley graph of $(\mathbb{Z}/2\mathbb{Z})^n$ with the standard generators, and the eigenvalues of a Cayley graph of any finite abelian group can be computed using the discrete Fourier transform (since the characters of the group automatically given eigenvectors of the adjacency matrix). We find that the eigenvalue $n - 2j$ occurs with multiplicity ${n \choose j}$, hence
$$\text{tr } A^r = \sum_{j=0}^n {n \choose j} (n - 2j)^r.$$
For fixed $n$ as $r \to \infty$ the dominant term is given by $n^r + (-n)^r$.
-
Thanks! that's what I needed. – Lev Reyzin Jul 31 '11 at 19:24
I'm guessing not, but is there any chance this expression has a closed form? – Lev Reyzin Aug 2 '11 at 17:12
@Lev: you mean without a summation over $n$? I doubt it. Is fixed $n$ as $r \to \infty$ not the regime you're interested in? – Qiaochu Yuan Aug 2 '11 at 17:36
In some sense, I'm more interested in fixed r as n gets large. The summation is certainly quite helpful, but of course if a closed form existed, it would even be nicer :) – Lev Reyzin Aug 2 '11 at 18:06 | {
"domain": "mathoverflow.net",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806552225684,
"lm_q1q2_score": 0.8536908497676295,
"lm_q2_score": 0.8705972784807406,
"openwebmath_perplexity": 193.67619611022087,
"openwebmath_score": 0.9168342351913452,
"tags": null,
"url": "http://mathoverflow.net/questions/71736/number-of-closed-walks-on-an-n-cube/71737"
} |
The number of such walks is $2^n$ (the number of vertices of the $n$-cube) times the number of walks that start (and end) at the origin. We may encode such a walk as a word in the letters $1, -1, \dots, n, -n$ where $i$ represents a positive step in the $i$th coordinate direction and $-i$ represents a negative step in the $i$th coordinate direction. The words that encode walks that start and end at the origin are encoded as shuffles of words of the form $i\ -i \ \ i \ -i \ \cdots\ i \ -i$, for $i$ from 1 to $n$. Since for each $i$ there is exactly one word of this form for each even length, the number of shuffles of these words of total length $m$ is the coefficient of $x^m/m!$ in $$\biggl(\sum_{k=0}^\infty \frac{x^{2k}}{(2k)!}\biggr)^{n} = \left(\frac{e^x + e^{-x}}{2}\right)^n.$$ Expanding by the binomial theorem, extracting the coefficient of $x^r/r!$, and multiplying by $2^n$ gives Qiaochu's formula.
Let $W(n,r)$ be the coefficient of $x^r/r!$ in $\cosh^n x$, so that $$W(n,r) = \frac{1}{2^n}\sum_{j=0}^n\binom{n}{j} (n-2j)^r.$$ Then we have the continued fraction, due originally to L. J. Rogers, $$\sum_{r=0}^\infty W(n,r) x^r = \cfrac{1}{1- \cfrac{1\cdot nx^2}{ 1- \cfrac{2(n-1)x^2}{1- \cfrac{3(n-2)x^2}{\frac{\ddots\strut} {\displaystyle 1-n\cdot 1 x^2} }}}}$$ A combinatorial proof of this formula, using paths that are essentially the same as walks on the $n$-cube, was given by I. P. Goulden and D. M. Jackson, Distributions, continued fractions, and the Ehrenfest urn model, J. Combin. Theory Ser. A 41 (1986), 21–-31.
Incidentally, the formula given above for $W(n,r)$ (equivalent to Qiaochu's formula) is given in Exercise 33b of Chapter 1 of the second edition of Richard Stanley's Enumerative Combinatorics, Volume 1 (not published yet, but available from his web page). Curiously, I had this page sitting on my desk for the past month (because I wanted to look at Exercise 35) but didn't notice until just now that this formula was on it. | {
"domain": "mathoverflow.net",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806552225684,
"lm_q1q2_score": 0.8536908497676295,
"lm_q2_score": 0.8705972784807406,
"openwebmath_perplexity": 193.67619611022087,
"openwebmath_score": 0.9168342351913452,
"tags": null,
"url": "http://mathoverflow.net/questions/71736/number-of-closed-walks-on-an-n-cube/71737"
} |
-
thanks - this is nice. – Lev Reyzin Aug 2 '11 at 23:08
Assuming a "closed walk" can repeat vertices, we can count closed walks starting at $0$ by counting the $r$-sequences of $[n]$ so that each number appears an even number of times. The bijection is given by labeling edges by the coordinate that is toggled between the vertices. You can probably count these sequences by inclusion/exclusion and then multiply by $2^n/r$ to account for the choice of start position.
-
If we assume the path moves in each dimension 0 or 2 times, you can select ${n \choose r/2}$ dimensions and then permute them $r^1/2^r$ ways. This is a lower bound on the number of walks and is likely the right asymptotics. – Derrick Stolee Jul 31 '11 at 17:03
That should be $r!/2^r$. – Derrick Stolee Jul 31 '11 at 17:03 | {
"domain": "mathoverflow.net",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806552225684,
"lm_q1q2_score": 0.8536908497676295,
"lm_q2_score": 0.8705972784807406,
"openwebmath_perplexity": 193.67619611022087,
"openwebmath_score": 0.9168342351913452,
"tags": null,
"url": "http://mathoverflow.net/questions/71736/number-of-closed-walks-on-an-n-cube/71737"
} |
# Question about summation notation index
I'm working through a proof involving the sum of covariances but the notation is tripping me up. What does it mean when you are taking a summation over the index $i < j$? For instance $\sum_{i < j}\mathrm{Cov}(X_{i},X_{j})$ where Cov is covariance.
I'm sure it's nothing complicated I just want to make sure I understand.
-
You run over all $j$ and for each $j$ you run over all $i$ such that $i < j$. For instance is $\sum_{i < j} i = 1+2+3+\cdots+n$ if $j$ can be maximal $n$. In particular this means here that you have $\sum_{i<j} Cov(x_i,x_j) = \sum_{i<1} Cov(x_i,x_1) + \sum_{i<2} Cov(x_i,x_2) + \sum_{i<3} Cov(x_i,x_3)+ \cdots +\sum_{i<n} Cov(x_i,x_n)$ if $j$ is maximal $n$. – André Oct 20 '12 at 16:04
In general $\sum_{i<j} = \sum_{j=1}^n \sum_{i=1}^j$ – André Oct 20 '12 at 16:13
This is an old post. If your question is solved, maybe you'd like to pick an answer you'd like best. Regards. – FrenzY DT. Dec 4 '12 at 17:03
### An Illustration
Suppose you have $i\in I=\{1,2,\cdots,5\}$ and $j\in J=\{1,2,\cdots,6\}$. The following picture shows you which of the terms $\sum\limits_{i<j} a_{i,j}$ include.
According to the picture, if you choose a certain value of $i$, then $j$ should at least be $i+1$, otherwise the condition $i<j$ isn't met (falling on or below the line $i=j$).
In conclusion, $$\sum\limits_{i<j} a_{i,j} = \sum_{i} \sum_{\text{All j's that's >i}} a_{i,j}.$$
If you sum $j$ last, you get $$\sum\limits_{i<j} a_{i,j} = \sum_{j} \sum_{\text{All i's that's <j}} a_{i,j}.$$
-
The notation means that you sum over all allowed $i$ and $j$ such that $i < j$. The notation is compact and protects you from errors that may come from doing the end-points incorrectly.
Here is an example. Suppose that $1\leq i \leq m$ and $1\leq j \leq n$ where $m$ and $n$ are not the same. If $m < n$, the sum becomes
$$\sum_{i < j} a_{ij} = \sum_{j = i+1}^n \sum_{i=1}^{m}a_{ij}.$$
If $n < m$ we have | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806563575741,
"lm_q1q2_score": 0.8536908491096323,
"lm_q2_score": 0.8705972768020108,
"openwebmath_perplexity": 276.30872809639965,
"openwebmath_score": 0.9213523268699646,
"tags": null,
"url": "http://math.stackexchange.com/questions/217462/question-about-summation-notation-index?answertab=active"
} |
$$\sum_{i < j} a_{ij} = \sum_{j = i+1}^n \sum_{i=1}^{m}a_{ij}.$$
If $n < m$ we have
$$\sum_{i < j} a_{ij} = \sum_{j = i+1}^n \sum_{i=1}^{n-1}a_{ij}.$$
Formally, these are two different expressions and to determine which one you are using can take a few seconds here but it could take a lot more time for more complicated sums.
- | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806563575741,
"lm_q1q2_score": 0.8536908491096323,
"lm_q2_score": 0.8705972768020108,
"openwebmath_perplexity": 276.30872809639965,
"openwebmath_score": 0.9213523268699646,
"tags": null,
"url": "http://math.stackexchange.com/questions/217462/question-about-summation-notation-index?answertab=active"
} |
# Mentally finding factors of an integer of up to three-digits.
I’m looking for the easiest methods to find factors, not necessarily prime, of positive integers $<1000$, preferably mentally, but using pen and blank paper when required.
Although these techniques might be useful for a certain televised Numbers Game, I’m just looking for methods faster than trial division.
I take for granted full knowledge of the twelve by twelve multiplication tables, and recognition of primes up to $101$
This, with the addition of $7\cdot13=91$ should cover much of the factorisation up to two digits.
Notation Using the idea of hundreds, tens and units, so $n=100H+10T+U$ is the number, I’ll use $H,T,U$ for the individual digits, $HT$ for the first two digits and $TU$ for the last two.
For example, $n=456$ gives $H=4$, $T=5$, $U=6$, $HT=45$ and $TU=56$
Some easy published divisibility tests
If $U=0$ then $10|n$
If $(TU)\equiv 0{\pmod{25}}$ then ${25}|n$
If $U=5$ then $5|n$
If $U\equiv 0{\pmod 2}$ then $2|n$
If $(H+T+U)\equiv 0{\pmod 9}$ then $9|n$
If $(H+T+U)\equiv 0{\pmod 3}$ then $3|n$
Merged published divisibility tests for primes $p=7$ to $47$
With $z$ taken from the following, if $(HT+zU)\equiv 0{\pmod p}$ then $p|n$
$$(p,z)$$ $$(7,-2)$$ $$(11,-1)$$ $$(13,4)$$ $$(17,-5)$$ $$(19,2)$$ $$(23,7)$$ $$(29,3)$$ $$(31,-3)$$ $$(37,-11)$$ $$(41,-4)$$ $$(43,13)$$ $$(43,-30)$$ $$(47,-14)$$
For some examples in the range, the test may need to be repeated on the result.
As $31^2=961$, the last few test are of limited use.
Alternative divisibility test for $11$
If $(H+U-T)=0$ or $11$ then $11|n$
Difference of two squares
Using $a^2-b^2\equiv(a+b)(a-b)$ helps in a few cases. For example,
$$899=900-1=(30+1)(30-1)=31\cdot29$$
$$91=100-9=(10+3)(10-3)=13\cdot7$$
$$391=400-9=(20+3)(20-3)=23\cdot17$$
My question | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806484125338,
"lm_q1q2_score": 0.853690843838832,
"lm_q2_score": 0.8705972784807408,
"openwebmath_perplexity": 270.63407062838064,
"openwebmath_score": 0.8441216945648193,
"tags": null,
"url": "https://math.stackexchange.com/questions/2776463/mentally-finding-factors-of-an-integer-of-up-to-three-digits"
} |
$$91=100-9=(10+3)(10-3)=13\cdot7$$
$$391=400-9=(20+3)(20-3)=23\cdot17$$
My question
I was tempted to ask what other divisibility or factorisation techniques exist that are potential easier than trial division, but “easier” is subjective; so I questions is:.
What other mental divisibility or factorisation techniques exist for an integer up to three digits?
Clarification update 11 May 2018
Sorry, I don’t feel I’ve sufficiently emphasised the importance of time, just assuming that easier was faster.
Full factorisation is ideal; partial factorisation is much better than nothing, so $663=3\cdot13\cdot17$ is best, but $663=3\cdot221$ is better than nothing.
Obtaining more than one small prime factor with one test is desirable, where the prime factors are obvious, as per the tests for $10,25$ and $9$, but a full list of all possible factors of $n$ is not needed.
• For three digit numbers you only have to do 11 trial divisions to find factors (for the primes from 2 up to 31). If none of them divides your number, no number does (except 1 and the number itself, of course). Trial divisions for 2,3,5,7 and 11 are easy. – YukiJ May 11 '18 at 10:58
• @YukiJ The OP wants to find factors, not necessarily prime. For instance, 6 is a factor. – scaaahu May 11 '18 at 11:35
• @scaaahu Yes, but if we observe that 2 and 3 are factors in a number then their product $2\cdot 3 =6$ is necessarily also a factor. Hence, if you find the prime factors, you also found the remaining other factors. – YukiJ May 11 '18 at 11:37
• @YukiJ Having a factor 9 implies having a factor 3, not the other way around. – scaaahu May 11 '18 at 11:52
• @scaaahu True but if you know that 3 divides $n$ then you can also check if 3 also divides $n/3$. If so, 9 divides $n$. In the particular case with 9 you could even check if the sum of digits of $n$ is divisible by 9. – YukiJ May 11 '18 at 11:55
As you have stated:
Checking a number is even will automatically give you the factor of $2$. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806484125338,
"lm_q1q2_score": 0.853690843838832,
"lm_q2_score": 0.8705972784807408,
"openwebmath_perplexity": 270.63407062838064,
"openwebmath_score": 0.8441216945648193,
"tags": null,
"url": "https://math.stackexchange.com/questions/2776463/mentally-finding-factors-of-an-integer-of-up-to-three-digits"
} |
As you have stated:
Checking a number is even will automatically give you the factor of $2$.
Summing the digits, if the digit sum is a multiple of $3$ or $9$, the number is also a multiple of $3$ or $9$.
Multiples of $5$ end in $5$, multiples of $10$ end in $0$.
For my extra method, let's consider $473$. It has no obvious factors based on those rules, so here I would use prime multiple subtraction. Start with $7$, the multiple of $7$ that ends in $3$ is $7\cdot9=63$, so subtract $63$ to get $410$. $41$ is not a multiple of $7$ or $9$, so neither are factors. Then consider $11$. $3\cdot 11=33$ so subtract $33$ to get $440$. $440=40\cdot 11$, hence we can see that $473=43\cdot 11$.
Note for $11$ that if you have $ab\cdot11$ , where $a,b$ represent the digits, the result is $a(a+b)b$, again to mean digits: e.g. $35\cdot11=385$. When $a+b>10$, it is harder to spot but still possible. What you should look for then is: $a(a+b-11)b$, and this is $(a-1)b \cdot 11$. E.g. for $528$, $5+8-11=2, \therefore 528=11*48$
If you can identify numbers as concatenations of multiples of the same number, they will be a multiple of that number. E.g. $654$ contains $6$ and $54$, both of which are multiples of $6$, and so we can do $6\div6=1$, and $54\div6=09$, therefore $654\div6=109$
• Thanks for your answer, which I’ve up-voted. I’ve used a similar method with numbers such as $721$. – Old Peter May 11 '18 at 14:42
• Thanks for the upvote. Note that $721$ is $7\cdot103$, you can see this by the subtraction method, or notice that $7$ and $21$ are both multiples of $7$, and so we can simply divide both by $7$ for $1$ and $03$ and then put these back together. A different example might be $726$, we see $72=12\cdot 6$ and $6=1\cdot 6$, putting back together we get $121$. – Rhys Hughes May 11 '18 at 14:56 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806484125338,
"lm_q1q2_score": 0.853690843838832,
"lm_q2_score": 0.8705972784807408,
"openwebmath_perplexity": 270.63407062838064,
"openwebmath_score": 0.8441216945648193,
"tags": null,
"url": "https://math.stackexchange.com/questions/2776463/mentally-finding-factors-of-an-integer-of-up-to-three-digits"
} |
# D.E word problem
#### bergausstein
##### Active member
1. radium decompose at the rate proportional to the amount itself. if the half life is 1600, find the percentage remaining after at the end of 200 years.
can you me go about solving this. thanks!
#### MarkFL
Staff member
Let $R(t)$ be the mass of radium in a given sample at time $t$. How can we mathematically state how this mass changes with time in general? Just look at the first sentence and use that to try to model this change with an initial value problem.
#### bergausstein
##### Active member
$R(t)=R_oe^{kt}$ where $k<0$
now the half-life is 1600 so,
$1600=3200e^{kt}$
#### MarkFL
Staff member
$R(t)=R_oe^{kt}$ where $k<0$
now the half-life is 1600 so,
$1600=3200e^{kt}$
You have the correct equation for the mass of a sample, but the half-life being 1600 years means that at time t=1600 then $R(t)=\dfrac{1}{2}R_0$. That is (I like to always use a positive constant):
$$\displaystyle R(1600)=R_0e^{-1600k}=\frac{1}{2}R_0$$
Divide through by $$\displaystyle R_0$$ and the convert from exponential to logarithmic form to solve for $k$. Another way to look at it is:
$$\displaystyle R(t)=R_02^{-\frac{t}{1600}}$$
And then to find the percentage remaining after $t$ years, use:
$$\displaystyle \frac{100R(t)}{R_0}=100\cdot2^{-\frac{t}{1600}}$$
#### bergausstein
##### Active member
from here solving for k
$\displaystyle R(1600)=R_0e^{-1600k}=\frac{1}{2}R_0$
dividing both sides by $R_o$
$\displaystyle e^{-1600k}=\frac{1}{2}$
taking the $\ln$ of both sides
$-1600k=\ln\frac{1}{2}$
dividing both sides by -1600
$\displaystyle k=-\frac{-\ln2}{1600}$ or $k=0.0004332$
now
$\displaystyle R(t)=R_0e^{-(0.0004332)t}$
how can I find the initial $R_o$?
Last edited:
#### MarkFL
Staff member
You don't need to know the initial amount, you need to know what percentage of the initial amount remains after 200 years.
#### bergausstein | {
"domain": "mathhelpboards.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806484125338,
"lm_q1q2_score": 0.8536908405465717,
"lm_q2_score": 0.8705972751232808,
"openwebmath_perplexity": 1667.1023268420893,
"openwebmath_score": 1.0000100135803223,
"tags": null,
"url": "https://mathhelpboards.com/threads/d-e-word-problem.9047/"
} |
#### bergausstein
##### Active member
You don't need to know the initial amount, you need to know what percentage of the initial amount remains after 200 years.
how can I do that if there's no given initial amount? can you tell how to go about it?
#### Prove It
##### Well-known member
MHB Math Helper
from here solving for k
$\displaystyle R(1600)=R_0e^{-1600k}=\frac{1}{2}R_0$
dividing both sides by $R_o$
$\displaystyle e^{-1600k}=\frac{1}{2}$
taking the $\ln$ of both sides
$-1600k=\ln\frac{1}{2}$
dividing both sides by -1600
$\displaystyle k=-\frac{-\ln2}{1600}$ or $k=0.0004332$
now
$\displaystyle R(t)=R_0e^{-(0.0004332)t}$
how can I find the initial $R_o$?
Do you think it's a good idea to give a decimal approximation when the function simplifies greatly if kept exact?
\displaystyle \begin{align*} k &= \frac{1}{1600} \ln{ (2) } \end{align*}
and so
\displaystyle \begin{align*} R(t) &= R_0 \exp { \left[ \frac{t}{1600} \ln{(2)} \right] } \\ &= R_0 \exp{ \left[ \ln{ \left( 2 ^{ \frac{t}{1600} } \right) } \right] } \\ &= R_0 \cdot 2^{ \frac{t}{1600} } \end{align*}
and so after 200 years, what proportion of the initial amount do you have?
#### MarkFL
Staff member
how can I do that if there's no given initial amount? can you tell how to go about it?
This is what I posted before:
...to find the percentage remaining after $t$ years, use:
$$\displaystyle \frac{100R(t)}{R_0}$$
#### bergausstein
##### Active member
$\displaystyle \frac{100R(200)}{R_0}=100\cdot2^{\frac{200}{1600}}$
do you mean like this? how can I find the percentage of remaining here?
#### MarkFL
Staff member
$\displaystyle \frac{100R(200)}{R_0}=100\cdot2^{\frac{200}{1600}}$
do you mean like this? how can I find the percentage of remaining here?
Reduce the exponent, and then that is the exact percentage remaining, and then you can use a calculator to obtain a decimal approximation if you like.
#### Prove It | {
"domain": "mathhelpboards.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806484125338,
"lm_q1q2_score": 0.8536908405465717,
"lm_q2_score": 0.8705972751232808,
"openwebmath_perplexity": 1667.1023268420893,
"openwebmath_score": 1.0000100135803223,
"tags": null,
"url": "https://mathhelpboards.com/threads/d-e-word-problem.9047/"
} |
#### Prove It
##### Well-known member
MHB Math Helper
It appears there was something wrong with your initial model.
You know that your model involves exponential decay, so after each unit of time passes, there is a certain constant amount multiplying through. In other words
\displaystyle \begin{align*} R_1 &= C\,R_0 \\ R_2 &= C^2\,R_0 \\ R_3 &= C^3\,R_0 \\ \vdots \\ R_t &= C^t\,R_0 \end{align*}
Since you know that when \displaystyle \begin{align*} t = 1600, R_{1600} = \frac{1}{2}R_0 \end{align*}, that means
\displaystyle \begin{align*} \frac{1}{2}R_0 &= C^{1600}\,R_0 \\ \frac{1}{2} &= C^{1600} \\ \ln{ \left( \frac{1}{2} \right) } &= \ln{ \left( C^{1600} \right) } \\ \ln{ \left( \frac{1}{2} \right) } &= 1600 \ln{(C)} \\ \frac{1}{1600} \ln{ \left( \frac{1}{2} \right) } &= \ln{(C)} \\ \ln{ \left[ \left( \frac{1}{2} \right) ^{\frac{1}{1600}} \right] } &= \ln{(C)} \\ \left( \frac{1}{2} \right) ^{ \frac{1}{1600} } &= C \\ 2^{ -\frac{1}{1600}} &= C \end{align*}
and thus your model is \displaystyle \begin{align*} R(t) = \left( 2^{-\frac{1}{1600}} \right) ^t \, R_0 = 2^{-\frac{t}{1600}}\,R_0 \end{align*}.
Now if \displaystyle \begin{align*} t = 200 \end{align*}, that gives
\displaystyle \begin{align*} R(200) &= 2^{-\frac{200}{1600}}\,R_0 \\ &= 2^{-\frac{1}{8}}\,R_0 \\ &\approx 0.917 \, R_0 \end{align*}
So what percentage of the original amount do you have? | {
"domain": "mathhelpboards.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9805806484125338,
"lm_q1q2_score": 0.8536908405465717,
"lm_q2_score": 0.8705972751232808,
"openwebmath_perplexity": 1667.1023268420893,
"openwebmath_score": 1.0000100135803223,
"tags": null,
"url": "https://mathhelpboards.com/threads/d-e-word-problem.9047/"
} |
# Probability.
#### M R
##### Active member
A spinner has three possible outcomes which occur with probabilities a, b and c where a+b+c=1.
What is the expected number of spins required until all three outcomes are seen?
There's an easy way and a harder way to do this. Guess which I did first.
#### Opalg
##### MHB Oldtimer
Staff member
A spinner has three possible outcomes which occur with probabilities a, b and c where a+b+c=1.
What is the expected number of spins required until all three outcomes are seen?
There's an easy way and a harder way to do this. Guess which I did first.
This is a variation on the coupon collector's problem. In the case when all the probabilities are equal ($a=b=c=1/3$), the expected number of spins is $3\bigl(1 +\frac12 + \frac13) = \frac{11}2.$
In the general case, I certainly don't see an easy way to approach the problem, and I don't get an easy-looking formula for the answer.
Write $A$, $B$, $C$ for the outcomes with probabilities $a$, $b$, $c$ respectively. If the first spin gives an $A$, then the expected number of spins until a $B$ or $C$ occurs is $\dfrac1{b+c}$. The probability that this outcome is a $B$ is $\dfrac b{b+c}$, in which case the expected number of further spins until a $C$ turns up is $1/c.$ And the probability that a $C$ occurs before a $B$ is $\dfrac c{b+c}$, in which case the expected number of further spins until a $B$ turns up is $1/b.$ Therefore the total expected number of spins for all three outcomes to occur (given that the $A$ appears first) is $$1 + \frac1{b+c}\Bigl(\frac b{b+c}\,\frac1c + \frac c{b+c}\,\frac1b\Bigr) = 1 + \frac{b^2+c^2}{(b+c)^2bc} = \frac1{bc} - \frac2{(1-a)^2}$$ (in the last step, I have written the $b^2+c^2$ in the numerator as $(b+c)^2 - 2bc$, and in the denominator $b+c = 1-a$). | {
"domain": "mathhelpboards.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9766692284751636,
"lm_q1q2_score": 0.8536843437017235,
"lm_q2_score": 0.8740772400852111,
"openwebmath_perplexity": 431.4964143389514,
"openwebmath_score": 0.9077078700065613,
"tags": null,
"url": "https://mathhelpboards.com/threads/probability.5953/"
} |
Multiply that by $a$, which is the probability of the $A$ occurring first, add two similar terms for the probabilities of $B$ or $C$ occurring first, and you get the answer for the expected number of spins as $$1 + \frac{a^2+b^2+c^2}{abc} - 2\biggl(\frac a{(1-a)^2} + \frac b{(1-b)^2} + \frac c{(1-c)^2}\biggl).$$
That looks messy, not the sort of thing that you could find easily? But it does reduce to $11/2$ when $a=b=c=1/3$, which makes me think that it should be correct.
#### M R
##### Active member
Hi Opalg
Maybe it wasn't easy but it was much easier than the other method which I will post if no one else does.
Your formula does give the right answer for a=b=c but not for other possibilities.
For comparison purposes:
a=1/2, b=1/3, c=1/6 should give 73/10
and
a=9/20, b=9/20, c=1/10 should give 353/33.
#### Opalg
##### MHB Oldtimer
Staff member
Your formula does give the right answer for a=b=c but not for other possibilities.
For comparison purposes:
a=1/2, b=1/3, c=1/6 should give 73/10
and
a=9/20, b=9/20, c=1/10 should give 353/33.
Stupid stupid mistake! My method was correct but I left out a $+$ sign, converting a sum into a product. The expression $$1 + \frac1{b+c}\Bigl(\frac b{b+c}\,\frac1c + \frac c{b+c}\,\frac1b\Bigr)$$
(for the expected number of spins for all three outcomes to occur, given that the $A$ appears first) should have been $$1 + \frac1{b+c} + \Bigl(\frac b{b+c}\,\frac1c + \frac c{b+c}\,\frac1b\Bigr) = 1 + \frac{bc + b^2+c^2}{(b+c)bc} = 1 + \frac{(b+c)^2 - bc}{(b+c)bc} = 1 + \frac{b+c}{bc} - \frac1{b+c}.$$ The answer for the total expected number of spins then comes out as $$1 + \frac{a(b+c)}{bc} + \frac{b(c+a)}{ca} + \frac{c(a+b)}{ab} - \frac a{b+c} - \frac b{c+a} - \frac c{a+b}.$$ That gives values agreeing with your results for a=1/2, b=1/3, c=1/6 and for a=9/20, b=9/20, c=1/10.
#### M R
##### Active member
The history of this problem (for me personally): | {
"domain": "mathhelpboards.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9766692284751636,
"lm_q1q2_score": 0.8536843437017235,
"lm_q2_score": 0.8740772400852111,
"openwebmath_perplexity": 431.4964143389514,
"openwebmath_score": 0.9077078700065613,
"tags": null,
"url": "https://mathhelpboards.com/threads/probability.5953/"
} |
#### M R
##### Active member
The history of this problem (for me personally):
On another forum someone posted a 'hard probability question'. It was the a=b=9/20, c=1/10 case. Looking back at that forum I see that I managed to get an answer six days later.
Months later I saw a post on MHF which taught me a better approach so I went back and did it again, the easy way. Unfortunately I can't view MHF to find out who my teacher was.
I think it's essentially the same as Opalg's method but here's the 'easy' method as I did it:
Events A, B and C have probabilities a, b and c.
Let the expected waiting time until A occurs be $$E(W_A)$$,
and the expected waiting time until A and B occur be $$E(W_{AB})$$ and so on.
$$E(W_{AB})=c(1+E(W_{AB}))+a(1+E(W_B))+b(1+E(W_A))$$
$$E(W_{AB})=c(1+E(W_{AB}))+a(1+1/b)+b(1+1/a)$$
$$E(W_{AB})=1 +cE(W_{AB})+a/b+b/a$$
$$E(W_{AB})=\frac{1+a/b+b/a}{1-c}$$
Similarly
$$E(W_{AC})=\frac{1+a/c+c/a}{1-b}$$
and
$$E(W_{BC})=\frac{1+b/c+c/b}{1-a}$$
Then $$E(W_{ABC})=a(1+E(W_{BC}))+b(1+E(W_{AC}))+c(1+E(W_{AB}))$$
and the method I used at first:
By thinking about how the sequence ends I knew I wanted all the ways to get As and Bs ending with C etc.
ABC
BAC
AABC
ABAC
BAAC
ABBC
BABC
BBAC
etc.
This led me to the sum
$$\displaystyle E(W)=\sum_{n=2}^\infty (n+1) \sum_{r=1}^{n-1} \binom{n}{r}(a^rb^{n-r}c+a^rc^{n-r}b+b^rc^{n-r}a)$$
$$\displaystyle =\sum_{n=2}^\infty (n+1) [ c((a+b)^n-a^n-b^n) +b((a+c)^n-a^n-c^n)+a((b+c)^n-b^n-c^n)]$$
This sum involves a number of geometric progressions and a number of sums of another type.
The other type is of the form $$\displaystyle S=\sum_{n=2}^\infty n x^n$$.
Multiplying by $$\displaystyle x$$ gives $$\displaystyle Sx=\sum_{n=2}^\infty n x^{n+1}$$ and so $$\displaystyle S-Sx = 2x^2+x^3+x^4+...$$
$$\displaystyle S(1-x)=x^2 + \frac{x^2}{1-x}$$ and $$\displaystyle S=\frac{x^2}{1-x}+\frac{x^2}{(1-x)^2}$$
Applying this formula, together with the formula for the sum of a GP we get
$$\displaystyle E(W)=$$ | {
"domain": "mathhelpboards.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9766692284751636,
"lm_q1q2_score": 0.8536843437017235,
"lm_q2_score": 0.8740772400852111,
"openwebmath_perplexity": 431.4964143389514,
"openwebmath_score": 0.9077078700065613,
"tags": null,
"url": "https://mathhelpboards.com/threads/probability.5953/"
} |
Applying this formula, together with the formula for the sum of a GP we get
$$\displaystyle E(W)=$$
$$\displaystyle (a+b)^2-\frac{ca^2}{1-a}-\frac{cb^2}{1-b}$$
$$\displaystyle + (a+c)^2-\frac{ba^2}{1-a}-\frac{bc^2}{1-c}$$
$$\displaystyle + (b+c)^2-\frac{ab^2}{1-b}-\frac{ac^2}{1-c}$$
$$\displaystyle +(a+b)^2(1+1/c)-c\left(\frac{a^2}{1-a}+\frac{a^2}{(1-a)^2}+\frac{b^2}{1-b}+\frac{b^2}{(1-b)^2}\right)$$
$$\displaystyle +(a+c)^2(1+1/b)-b\left(\frac{a^2}{1-a}+\frac{a^2}{(1-a)^2}+\frac{c^2}{1-c}+\frac{c^2}{(1-c)^2}\right)$$
$$\displaystyle +(b+c)^2(1+1/a)-a\left(\frac{b^2}{1-b}+\frac{b^2}{(1-b)^2}+\frac{c^2}{1-c}+\frac{c^2}{(1-c)^2}\right)$$
What a mess!
This could be simplified using $$\displaystyle a+b+c=1$$ but having checked it against the first method I'm happy that it's correct and I'm not interested in doing the simplification. | {
"domain": "mathhelpboards.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9766692284751636,
"lm_q1q2_score": 0.8536843437017235,
"lm_q2_score": 0.8740772400852111,
"openwebmath_perplexity": 431.4964143389514,
"openwebmath_score": 0.9077078700065613,
"tags": null,
"url": "https://mathhelpboards.com/threads/probability.5953/"
} |
# Surely You're Joking, Mr. Feynman! $\int_0^\infty\frac{\sin^2x}{x^2(1+x^2)}\,dx$ [duplicate]
Prove the following $$$$\int_0^\infty\frac{\sin^2x}{x^2(1+x^2)}\,dx=\frac{\pi}{4}+\frac{\pi}{4e^2}$$$$
I would love to see how Mathematics SE users prove the integral preferably with the Feynman way (other methods are welcome). Thank you. (>‿◠)✌
Original question:
And of course, for the sadist with a background in differential equations, I invite you to try your luck with the last integral of the group.
$$$$\int_0^\infty\frac{\sin^2x}{x^2(1+x^2)}\,dx$$$$
Source: Integration: The Feynman Way
• "The Feynman way" is just a fancy name for the good old differentiation under the integral? – Daniel Fischer May 21 '14 at 11:30
• @DanielFischer I know that Sir but I prefer naming "The Feynman Way" (ô‿ô) – Anastasiya-Romanova 秀 May 21 '14 at 11:33
• @DanielFischer: there seems to be a tendency on this site to label any differentiation of an artificially introduced parameter under the integral sign as "Feynman's <method, way, etc.>." I doubt Feynman invented it, but I see that loads of people read "Surely You're Joking...". – Ron Gordon May 21 '14 at 12:20
• @RonGordon Indeed. It's a good read, by the way. Now, will you have lemon or milk in your tea? – Daniel Fischer May 21 '14 at 12:23
• @V-Moy: Hey, I never said it was wrong; I just think it is a little funny. BTW it would not be the first time that a method or something else is named after its popularizer rather than its inventor. – Ron Gordon May 21 '14 at 12:38
This integral is readily evaluated using Parseval's theorem for Fourier transforms. (I am certain that Feynman had this theorem in his tool belt.) Recall that, for transform pairs $f(x)$ and $F(k)$, and $g(x)$ and $G(k)$, the theorem states that
$$\int_{-\infty}^{\infty} dx \, f(x) g^*(x) = \frac1{2 \pi} \int_{-\infty}^{\infty} dk \, F(k) G^*(k)$$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9766692277960745,
"lm_q1q2_score": 0.8536843399044485,
"lm_q2_score": 0.8740772368049822,
"openwebmath_perplexity": 1866.8382785663596,
"openwebmath_score": 0.9616157412528992,
"tags": null,
"url": "https://math.stackexchange.com/questions/803954/surely-youre-joking-mr-feynman-int-0-infty-frac-sin2xx21x2-dx/803957"
} |
In this case, $f(x) = \frac{\sin^2{x}}{x^2}$ and $g(x) = 1/(1+x^2)$. Then $F(k) = \pi (1-|k|/2) \theta(2-|k|)$ and $G(k) = \pi \, e^{-|k|}$. ($\theta$ is the Heaviside function, $1$ when its argument is positive, $0$ when negative.) Using the symmetry of the integrand, we may conclude that
\begin{align}\int_0^{\infty} dx \frac{\sin^2{x}}{x^2 (1+x^2)} &= \frac{\pi}{2} \int_0^{2} dk \, \left ( 1-\frac{k}{2} \right ) e^{-k} \\ &= \frac{\pi}{2} \left (1-\frac1{e^2} \right ) - \frac{\pi}{4} \int_0^{2} dk \, k \, e^{-k} \\ &= \frac{\pi}{2} \left (1-\frac1{e^2} \right ) + \frac{\pi}{2 e^2} - \frac{\pi}{4} \left (1-\frac1{e^2} \right )\\ &= \frac{\pi}{4} \left (1+\frac1{e^2} \right )\end{align}
• @V-Moy: Yeah, I'm fast like that. – Ron Gordon May 21 '14 at 12:38
• Surely You're Joking, Mr. Gordon! (‐^▽^‐) – Anastasiya-Romanova 秀 May 21 '14 at 12:41
• @RonGordon Why did you answer the same question again since you knew it was a duplicate? You have already answered this question for me : math.stackexchange.com/questions/691798/…. – Jeff Faraci May 22 '14 at 14:15
• @Integrals: because I answered it three months ago and at my age, dementia sets in. I admit that sometimes I just answer the question without looking back through my vast database of answers. So, no, I did not know it was a duplicate. – Ron Gordon May 22 '14 at 14:21
• @Integrals: I would have if I had known. But so what - the worst thing in the world is that duplicate correct (and consistent) answers exist in the site? Vote to close as a duplicate if this bothers you. – Ron Gordon May 22 '14 at 14:27 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9766692277960745,
"lm_q1q2_score": 0.8536843399044485,
"lm_q2_score": 0.8740772368049822,
"openwebmath_perplexity": 1866.8382785663596,
"openwebmath_score": 0.9616157412528992,
"tags": null,
"url": "https://math.stackexchange.com/questions/803954/surely-youre-joking-mr-feynman-int-0-infty-frac-sin2xx21x2-dx/803957"
} |
Here is my attempt: \begin{align} \int_0^\infty\frac{\sin^2x}{x^2(1+x^2)}dx&=\int_0^\infty\left[\frac{\sin^2x}{x^2}-\frac{\sin^2x}{1+x^2}\right]dx\\ &=\int_0^\infty\frac{\sin^2x}{x^2}dx-\frac{1}{2}\int_0^\infty\frac{1-\cos2x}{1+x^2}dx\\ &=\frac{\pi}{2}-\frac{1}{2}\int_0^\infty\frac{1}{1+x^2}dx+\frac{1}{2}\int_0^\infty\frac{\cos2x}{1+x^2}dx\\ &=\frac{\pi}{2}-\frac{1}{2}\frac{\pi}{2}+\frac{1}{2}\frac{\pi}{2e^2}\\ &=\frac{\pi}{4}+\frac{\pi}{4e^2} \end{align} where I use these links: $\displaystyle\int_0^\infty\frac{\sin^2x}{x^2}dx$ and $\displaystyle\int_0^\infty\frac{\cos2x}{1+x^2}dx$ to help me out.
Unfortunately, this is not the Feynman way but I still love this method.
• Thanks for fixing my answer @MycrofD. I'm too excited so I forgot about my English grammar. ≥Ö‿Ö≤ – Anastasiya-Romanova 秀 May 21 '14 at 11:30
• Next time put your attempt in the question. Besides, you got it right (>‿◠)✌. – Shahar May 21 '14 at 11:53
• @Shahar Thanks, +1 for your emo. ≧◠◡◠≦✌ – Anastasiya-Romanova 秀 May 21 '14 at 12:09
• @V-Moy You seem to be an expert in emo's and integrals. ✌ – Sawarnik May 21 '14 at 17:43
• @Sawarnik You might say I'm expert in emo but not in integral, not yet (✿◠‿◠) – Anastasiya-Romanova 秀 May 22 '14 at 8:17
Consider $$I(a)=\int_0^\infty\frac{\sin^2(ax)}{x^2(x^2+1)}dx$$ Differentiate it twice. Since $$\int_0^\infty\frac{\cos(kx)}{x^2+1}dx=\frac{\pi}{2e^k}$$ for $k>0$ we get $I''(a)=\pi e^{-2a}$. Note that $I'(0)=I(0)=0$, so after solving respective IVP we get $$I(a)=\frac{\pi}{4}(-1+2a+e^{-2a})$$ Now it only remains to substitute for $a=1$. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9766692277960745,
"lm_q1q2_score": 0.8536843399044485,
"lm_q2_score": 0.8740772368049822,
"openwebmath_perplexity": 1866.8382785663596,
"openwebmath_score": 0.9616157412528992,
"tags": null,
"url": "https://math.stackexchange.com/questions/803954/surely-youre-joking-mr-feynman-int-0-infty-frac-sin2xx21x2-dx/803957"
} |
• Wait a second! Why never cross to mind to use Feynman method twice?? +1 Sir! ≥►.◄≤ – Anastasiya-Romanova 秀 May 21 '14 at 12:47
• @V-Moy Because you're not thinking like Feynman! Suppose the Feynman method just transforms your complicated integral into another complicated integral. Well, what tricks do you know for handling complicated integrals? That's right, the Feynman method! :) – David H May 21 '14 at 13:59
• Thanks for your advice Mr. @DavidH. I'll try to think like Feynman. I have a lot of time though. ᕙ(^▽^)ᕗ – Anastasiya-Romanova 秀 May 21 '14 at 16:17
• Why did you post this solution again? You knew this was a duplicate, this is a great solution but still. -1. math.stackexchange.com/questions/691798/… – Jeff Faraci May 22 '14 at 14:14
• @Integrals because it is not forbidden, and this answer perfectly fits to the question even more than the in the link you gave above. – Norbert May 22 '14 at 15:47 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9766692277960745,
"lm_q1q2_score": 0.8536843399044485,
"lm_q2_score": 0.8740772368049822,
"openwebmath_perplexity": 1866.8382785663596,
"openwebmath_score": 0.9616157412528992,
"tags": null,
"url": "https://math.stackexchange.com/questions/803954/surely-youre-joking-mr-feynman-int-0-infty-frac-sin2xx21x2-dx/803957"
} |
# Is the sequence $x_n=\dfrac{1}{\sqrt{n}}\left(1+\dfrac{1}{\sqrt{2}}+\dfrac{1}{\sqrt{3}}+\ldots+\dfrac{1}{\sqrt{n}}\right)$ monotone?
Observe that $$x_1=1$$ and $$x_2=\dfrac{1}{\sqrt{2}}\left(1+\dfrac{1}{\sqrt{2}}\right)>\dfrac{1}{\sqrt{2}}\left(\dfrac{1}{\sqrt{2}}+\dfrac{1}{\sqrt{2}}\right)=1$$.
Thus, $$x_2>x_1$$. In general, we also have $$x_n=\dfrac{1}{\sqrt{n}}\left(1+\dfrac{1}{\sqrt{2}}+\dfrac{1}{\sqrt{3}}+\ldots+\dfrac{1}{\sqrt{n}}\right)>\dfrac{1}{\sqrt{n}}\left(\dfrac{1}{\sqrt{n}}+\dfrac{1}{\sqrt{n}}+\dfrac{1}{\sqrt{n}}+\ldots+\dfrac{1}{\sqrt{n}}\right)=1$$.
Thus, $$x_n\geq 1$$ for all $$n\in \mathbb{N}$$. Also, we have,
$$x_{n+1}=\dfrac{1}{\sqrt{n+1}}\left(\sqrt{n}x_n+\dfrac{1}{\sqrt{n+1}}\right)=\dfrac{\sqrt{n}}{\sqrt{n+1}}x_n+\dfrac{1}{n+1}$$.
Is it true that $$x_{n+1}>x_n$$?
Edit : Thanks to the solution provided by a co-user The73SuperBug. Proving $$x_{n+1}-x_n>0$$ is equivalent to proving $$x_n<1+\dfrac{\sqrt{n}}{\sqrt{n+1}}$$. This is explained below :
\begin{aligned} &x_{n+1}-x_n>0\\ \Leftrightarrow & \dfrac{\sqrt{n}}{\sqrt{n+1}}x_n+\dfrac{1}{n+1}-x_n>0\\ \Leftrightarrow & \left(1-\dfrac{\sqrt{n}}{\sqrt{n+1}}\right)x_n-\dfrac{1}{n+1}<0\\ \Leftrightarrow & x_n<\dfrac{1}{(n+1)\left(1-\dfrac{\sqrt{n}} {\sqrt{n+1}}\right)}\\ \Leftrightarrow & x_n<1+\dfrac{\sqrt{n}}{\sqrt{n+1}}. \end{aligned}
• It's basically a Riemann sum for a convex function. The (good) accepted answer focuses on the specific function you have, but I think a generalization would not harm, so I've added an answer based on this alternative idea. May 17, 2020 at 12:17 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9908743636887527,
"lm_q1q2_score": 0.8536761215408448,
"lm_q2_score": 0.8615382058759129,
"openwebmath_perplexity": 347.6546216543871,
"openwebmath_score": 0.9968483448028564,
"tags": null,
"url": "https://math.stackexchange.com/questions/3678612/is-the-sequence-x-n-dfrac1-sqrtn-left1-dfrac1-sqrt2-dfrac1-s"
} |
The sequence is indeed increasing. Using what you have left off we need to prove: $$x_{n+1} - x_n > 0\iff ...x_n < 1+\dfrac{\sqrt{n}}{\sqrt{n+1}}$$. We prove this by induction on $$n \ge 1$$. Clearly $$x_1 = 1 < 1+ \sqrt{\frac{1}{2}}$$. Assume $$x_n < 1+\dfrac{\sqrt{n}}{\sqrt{n+1}}$$, we show: $$x_{n+1} < 1+\dfrac{\sqrt{n+1}}{\sqrt{n+2}}$$. Using the recursive formula you had above: $$x_{n+1} = \dfrac{\sqrt{n}}{\sqrt{n+1}}x_n+\dfrac{1}{n+1}< \dfrac{\sqrt{n}}{\sqrt{n+1}}\left(1+\dfrac{\sqrt{n}}{\sqrt{n+1}}\right)+\dfrac{1}{n+1}= 1+\dfrac{\sqrt{n}}{\sqrt{n+1}}< 1+\dfrac{\sqrt{n+1}}{\sqrt{n+2}}$$ which is clear because $$n(n+2) < (n+1)^2$$. Thus by induction $$x_n < 1 +\dfrac{\sqrt{n}}{\sqrt{n+1}}$$ and in turn implies $$x_{n+1} > x_n, \forall n \ge 1$$. Thus the sequence is increasing.
A generalization I couldn't pass by. Let $$\color{blue}{S_n=\frac1n\sum_{k=1}^{n-1}f\big(\frac{k}{n}\big)}$$ where $$f:(0,1)\to\mathbb{R}$$ is strictly convex: $$f\big((1-t)a+tb\big)<(1-t)f(a)+tf(b)\quad\impliedby\quad a If we put $$a=k/(n+1),b=(k+1)/(n+1),t=k/n$$ for $$0 here, we obtain $$f\Big(\frac{k}{n}\Big)<\Big(1-\frac{k}{n}\Big)f\Big(\frac{k}{n+1}\Big)+\frac{k}{n}f\Big(\frac{k+1}{n+1}\Big),$$ which, after summing over $$k$$ (to have "$$<$$" still, we must assume $$n>1$$), gives $$\sum_{k=1}^{n-1}f\Big(\frac{k}{n}\Big)<\sum_{k=1}^{\color{red}{n}}\Big(1-\frac{k}{n}\Big)f\Big(\frac{k}{n+1}\Big)+\sum_{k=\color{red}{1}}^{n}\frac{k-1}{n}f\Big(\frac{k}{n+1}\Big)=\frac{n-1}{n}\sum_{k=1}^{n}f\Big(\frac{k}{n+1}\Big),$$ i.e. $$\color{blue}{n^2 S_n<(n^2-1)S_{n+1}}$$. Returning to the question, if we put $$f(x)=1/\sqrt{x}$$, we get $$x_n=S_n+1/n$$ and $$n^2 x_n<(n^2-1)x_{n+1}+1$$; since $$x_{n+1}>1$$, the latter implies the needed $$x_n. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9908743636887527,
"lm_q1q2_score": 0.8536761215408448,
"lm_q2_score": 0.8615382058759129,
"openwebmath_perplexity": 347.6546216543871,
"openwebmath_score": 0.9968483448028564,
"tags": null,
"url": "https://math.stackexchange.com/questions/3678612/is-the-sequence-x-n-dfrac1-sqrtn-left1-dfrac1-sqrt2-dfrac1-s"
} |
# Math Help - Midterm review
1. ## Midterm review
Agh, I've been working on this question for an hour and can't seem to make any headway. I seem to be completely lost on it.
a.) Show that the positive integers less than 11, except 1 and 10 can be split into pairs of integers such that each pair consists of integers that are inverses of each other modulo 11.
b.) use part (a) to show that 10! = -1(mod 11)
Any help would be appreciated
2. Originally Posted by Niotsueq
Agh, I've been working on this question for an hour and can't seem to make any headway. I seem to be completely lost on it.
a.) Show that the positive integers less than 11, except 1 and 10 can be split into pairs of integers such that each pair consists of integers that are inverses of each other modulo 11.
b.) use part (a) to show that 10! = -1(mod 11)
For a), you can find out by trial and error that, for example, $2\times6 = 12\equiv1\!\!\!\pmod{11}$. Therefore 2 and 6 are inverses of each other. So also are 7 and 8, because $7\times8 = 56\equiv1\!\!\!\pmod{11}$.
For b), $10! = 1\times 2\times3\times\cdots\times10 = 1\times(2\times6)\times\cdots\times(7\times8)\time s\cdots\times10$ (pair the numbers off as in part a)).
3. Hello, Niotsueq!
a) Show that the positive integers less than 11, except 1 and 10,
can be split into pairs of integers such that each pair consists of integers
that are inverses of each other modulo 11.
. . . . . $\begin{array}{ccc}2\cdot6 &\equiv & 1\text{ (mod 11)} \\3\cdot4 &\equiv & 1\text{ (mod 11)} \\ 5\cdot9 &\equiv & 1\text{ (mod 11)} \\ 7\cdot8 & \equiv& 1 \text{ (mod 11)} \end{array}$
b) use part (a) to show that 10! = -1 (mod 11)
$10! \;\equiv\;1\cdot2\cdot3\cdot4\cdot5\cdot6\cdot7\cd ot8\cdot9\cdot10\,\text{ (mod 11)}$
. . . $\equiv \;1\cdot(2\cdot6)\cdot(3\cdot4)\cdot(5\cdot9)\cdot (7\cdot8)\cdot10\,\text{ (mod 11)}$
. . . $\equiv\;1\cdot 1\cdot 1\cdot 1\cdot1\cdot10\,\text{ (mod 11)}$
. . . $\equiv\;10\,\text{ (mod 11)}$ | {
"domain": "mathhelpforum.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575152637948,
"lm_q1q2_score": 0.853672288466941,
"lm_q2_score": 0.8688267864276108,
"openwebmath_perplexity": 315.83318513282575,
"openwebmath_score": 0.8525896668434143,
"tags": null,
"url": "http://mathhelpforum.com/discrete-math/77647-midterm-review.html"
} |
. . . $\equiv\;10\,\text{ (mod 11)}$
. . . $\equiv\;\text{-}1\,\text{ (mod 11)}$
4. Thanks! That's a lot easier than I thought. But, I'm not quite sure why, for instance:
2*6 = 1 (mod 11)
How does this say that 2 and 6 are inverses? I think I may be confused on the definition.
Thanks alot to both of you.
5. Originally Posted by Niotsueq
Thanks! That's a lot easier than I thought. But, I'm not quite sure why, for instance:
2*6 = 1 (mod 11)
How does this say that 2 and 6 are inverses? I think I may be confused on the definition.
Thanks alot to both of you.
$2\cdot 6 \equiv 1 \mod 11$
this shows that they are inverses of each other.
remember what an inverse is in regular multiplication?
$3 \cdot \frac{1}{3}=1$
do you see how the original means they are inverses now?
6. Originally Posted by GaloisTheory1
$2\cdot 6 \equiv 1 \mod 11$
this shows that they are inverses of each other.
remember what an inverse is in regular multiplication?
$3 \cdot \frac{1}{3}=1$
do you see how the original means they are inverses now?
So two numbers are inverses of one another mod(n) if their product is congruent to one mod(n)? | {
"domain": "mathhelpforum.com",
"id": null,
"lm_label": "1. YES\n2. YES\n\n",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575152637948,
"lm_q1q2_score": 0.853672288466941,
"lm_q2_score": 0.8688267864276108,
"openwebmath_perplexity": 315.83318513282575,
"openwebmath_score": 0.8525896668434143,
"tags": null,
"url": "http://mathhelpforum.com/discrete-math/77647-midterm-review.html"
} |
# Prove that the sequence $(a_n)$ defined by $a_0 = 1$, $a_{n+1} = 1 + \frac 1{a_n}$ is convergent in $\mathbb{R}$
I will post the exercise below:
Prove that the sequence $(a_n)$ defined by $a_0 = 1$, $a_{n+1} = 1 + \frac 1{a_n}$ for $n \in \mathbb N$ is convergent in $\mathbb R$ with the Euclidean metric, and determine afterwards is limit. Can you intepret the limit geometrically (hint: Golden ratio)?
So I need to prove that the sequence is convergent in $\mathbb{R}$ with the Euclidean metric, and how do I prove that? The limit must be $1$, but how to interpret it geometrically?
• All I am willing to say is that "hint: Golden ratio" is a very strong hint. Oct 8, 2013 at 9:43
• The limit is not 1. @Duronman, the series is not monotonically increasing either. Oct 8, 2013 at 9:47
• @AdrianRatnapala true! I wrote too fast, sorry, I thought of $a_n + \frac{1}{a_n}$ because of the $1$. I will delete the comment to avoid confusion. Oct 8, 2013 at 9:54
Hint: If the limit $L$ exists, it must satisfy $L = 1 + \frac{1}{L}$, and so it cannot be 1. The solutions are the roots of the equation $L^2 - L - 1 = 0$, and so $L \in \{\frac{1+\sqrt{5}}{2}, \frac{1-\sqrt{5}}{2} \}$. That's where the golden ratio comes into play. Note also that the limit cannot be $\frac{1-\sqrt{5}}{2}$ since $a_n > 0$ for all $n$.
Let $\phi$ be the golden ratio, which is the only positive real such that $\phi = 1 + 1/\phi$. Now consider the sequence $\epsilon_n = a_n - \phi$. We seek to prove the invariant:
$$|\epsilon_n/\epsilon_0| \le \phi^{-n}.$$
For $n=0$, this is clear by inspection. With some algebra we see that:
$$\epsilon_{n+1} = 1 + {1\over a_n} - \phi = -{\epsilon_n\over a_n\phi}.$$
Now our invariant already implies that $a_n = \phi + \epsilon_n \ge \phi - \phi^{-n}\epsilon_0 \ge 1.$ Therefore
$$|\epsilon_{n+1}| \le \left|{\epsilon_n\over \phi}\right| \le \phi^{-(n+1)}.$$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575183283513,
"lm_q1q2_score": 0.853672286123661,
"lm_q2_score": 0.8688267813328976,
"openwebmath_perplexity": 162.4357127236693,
"openwebmath_score": 0.9110130667686462,
"tags": null,
"url": "https://math.stackexchange.com/questions/518739/prove-that-the-sequence-a-n-defined-by-a-0-1-a-n1-1-frac-1a-n/518791"
} |
$$|\epsilon_{n+1}| \le \left|{\epsilon_n\over \phi}\right| \le \phi^{-(n+1)}.$$
So our invariant remains after $n \rightarrow n+1$. And therefore for all nonnegative integers $n$ by induction. But since $\phi > 1$, that invariant means that $\epsilon_n$ approaches zero or $a_n$ approaches $\phi$ as $n$ goes to infinity.
Writing out the first few terms will yield a very interesting pattern:
$a_0 = \frac{1}{1}, a_1 =\frac{2}{1}, a_2=\frac{3}{2}, a_3=\frac{5}{3} ...$
Do u see it now. Every term is a ratio of fibonacci nos. i.e. if $T_n$ is the nth fibonacci number starting from 1, then $a_n = \frac{T_{n+2}}{T_{n+1}}$. The limit of this is indeed the golden ratio. Try solving the difference equation to see it in case you are unaware of this result.
As for the proof that the observation is correct and not a coincidence, use induction. We verified the base cases above, so assume $$a_n = \frac{T_{n+2}}{T_{n+1}}$$
Now $$a_{n+1} = 1+ \frac{1}{a_n} = 1 + \frac{T_{n+1}}{T_{n+2}}= \frac{T_{n+2} + T_{n+1}}{T_{n+2}} = \frac{T_{n+3}}{T_{n+2}}$$
Hence proved. $\blacksquare$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575183283513,
"lm_q1q2_score": 0.853672286123661,
"lm_q2_score": 0.8688267813328976,
"openwebmath_perplexity": 162.4357127236693,
"openwebmath_score": 0.9110130667686462,
"tags": null,
"url": "https://math.stackexchange.com/questions/518739/prove-that-the-sequence-a-n-defined-by-a-0-1-a-n1-1-frac-1a-n/518791"
} |
Hence proved. $\blacksquare$
• But you still need to prove that the ratios of consecutive Fibonnaci numbers actually converge to anything at all. Oct 10, 2013 at 8:44
• I told OP to solve the difference equation for $a_n = a_{n-1} + a_{n-2}$. From that you can evaluate the limit. Oct 10, 2013 at 8:48
• I am missing some knowledge about difference equations. The easiest method to find that limit (if it exists) I know is to find the roots of the iteration rule translated into a polynomial. But I did not know the limit was guaranteed to exist. Oct 14, 2013 at 18:07
• You are referring to the Z Transform method for solving difference equations. With it, you will get the solution for all n. Then you can proceed by my method. Oct 14, 2013 at 18:45
• Adrian, another way is to get the general solution to the recurrence relation and then just take limits. There will invariably be a dominating term which determines the limit. Dec 22, 2013 at 3:30
We will consider decreasing function $f:(0, \infty)\rightarrow(0,\infty), f(x)=1+\frac{1}{x}$. Function $fof:(0, \infty ) \rightarrow(0, \infty)$ is increasing and therefore subsequence $a_{2n},n\geq0$ is increasing, and subsequence $a_{2n +1},n\geq0$ is decreasing. Because $1\leq a_{2n}<a_{2n +1}\leq2$, it follows that both are converging subsequences with common limit the golden ratio, which is the limit sequence in question. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575183283513,
"lm_q1q2_score": 0.853672286123661,
"lm_q2_score": 0.8688267813328976,
"openwebmath_perplexity": 162.4357127236693,
"openwebmath_score": 0.9110130667686462,
"tags": null,
"url": "https://math.stackexchange.com/questions/518739/prove-that-the-sequence-a-n-defined-by-a-0-1-a-n1-1-frac-1a-n/518791"
} |
# How many different Tsuro tiles can exist?
The boardgame Tsuro consists of tiles, which each have 8 entry points. Each tile connects each point to exactly one other point. The game manual claims every tile is unique. The game consists of 35 such tiles.
How many unique such tiles could possibly exist?
My reasoning:
• You start with 8 free points. Choose any point, you now have 7 possibilities to connect.
• You now have 6 free points. Choose any point, you now have 5 possibilities to connect.
• You now have 4 free points. Choose any point, you now have 3 possibilities to connect.
• You now have 2 free points. Connect them (no choice possible).
This would lead to 7*5*3 : 105 possibilities. But I wouldn't know how to eliminate "doubles" caused by rotating a tile. Should I divide by 4, since 4 rotations are possible? That would be 26 tiles... but the game itself contains 35 and they are unique.
How should I reason?
• Well, here's why you can't just divide by $4$: Not all the rotations are unique - consider the tile in which each point is connected to the one directly opposite it on the other side - then this tile is rotationally symmetric. Another example in which not all rotations are unique is the bottom left tile in the picture you provided. – Peter Woolfitt Jan 2 '15 at 10:31
You can use Burnside's Lemma. I'll go through the calculation here, though you should read that page for this to make sense.
The set X is all 105 possibilities. The group G that acts on X is $\langle r | r^4 = 1 \rangle$, where r is a 90 degree rotation. Burnside's Lemma is applicable since each tile corresponds exactly to one orbit in X under G. The number of elements of X fixed by each element of G is
• $1: 105$
• $r: 5$
• $r^2: 25$
• $r^3: 5$
So the number of orbits (tiles) is $\frac{1}{4}(105+5+25+5)=35$. The hardest part is computing the $r^2: 25$ entry; here's how I did it: | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575157745542,
"lm_q1q2_score": 0.8536722822362375,
"lm_q2_score": 0.8688267796346599,
"openwebmath_perplexity": 849.0195871336006,
"openwebmath_score": 0.5815846920013428,
"tags": null,
"url": "https://math.stackexchange.com/questions/1088313/how-many-different-tsuro-tiles-can-exist"
} |
• Case 1: No pair of antipodal points is connected. Choose any point: you have 6 legal possibilities to connect. Whatever you choose, $r^2$ fixes a second symmetrical connection, so you have 4 points left with 2 legal ways to connect them, for a total of 6*2=12 possibilities.
• Case 2: 2 pairs of antipodal points are connected. There are $\binom{4}{2}=6$ ways to pick the pairs and 2 ways to connect the reamining 4 points, for another 12 possibilities.
• Case 3: All 4 antipodal pairs are connected. There is only 1 such possibility.
• You'd probably also find this page interesting. – Benjamin Cosman Aug 28 '16 at 21:14
• $<abc>$ looks like this: $<abc>$, and $\langle abc\rangle$ looks like this $\langle abc\rangle$. #FriendsDoNotLetFriendsUseTheWrongAnglyThings – Mariano Suárez-Álvarez Aug 28 '16 at 21:19
• Interesting approach, thank you! – Konerak Aug 29 '16 at 7:07
One can reduce further the $105$ possible tiles, down to the minimum possible of $35$ topologically unique tiles via $mod\, 8$ arithmetic, $1+7=(8)=0$.
Modulo $8$ arithmetic (each tile has $8$ ports numbered $0123457$) allows $CW$ and $CCW 2$-dimensional rotations (can not flip a tile, as a flip would represent a $3D$ rotation). To keep this simple, there are no negative integers here, $0-1=7$ is being interpreted as $7+1=0$.
A $45^{\circ}$ rotation is represented by adding/subtracting 1 to/from the port #.
Rotations of $90^{\circ}, 180^{\circ}, 270^{\circ}$ are represented by adding/subtracting $2, 4, 6$ respectively. I just added $2, 4, 6$ used only addition.
Represent a pair of two connected ports of a tile by a $2$-digit number. For example $15$ means port#1 is connected to port#5, i.e. not decimal fifteen.
Represent each tile via a quad set of number pairs, non repeating digits,for example $\{01, 23, 45, 67\}$.
Note $\{01, 14, 26, 57\}$ is not a valid tile as digit "1" -port#1- appears twice.
Example of $180^{\circ}$ rotation: | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575157745542,
"lm_q1q2_score": 0.8536722822362375,
"lm_q2_score": 0.8688267796346599,
"openwebmath_perplexity": 849.0195871336006,
"openwebmath_score": 0.5815846920013428,
"tags": null,
"url": "https://math.stackexchange.com/questions/1088313/how-many-different-tsuro-tiles-can-exist"
} |
Example of $180^{\circ}$ rotation:
Tile $\{04, 12, 36, 57\}$ is rotated $180^{\circ}$ by adding (modulo 8) $+4$ to each of its digits.
$$0+4=4$$
$$4+4=(8)=0$$
$$1+4=5$$
$$2+4=6$$
$$3+4=7$$
$$6+4=(10)=2$$
$$5+4=(9)=1$$
$$7+4=(11)=3$$
Thus rotated tile becomes $\{40, 56, 72, 13\}$ and will order/describe/ its ports from low-to-high (as each numbers-pair is commutative, $40=04$ and $72=27$).
Therefore this $180^{\circ}$ rotated tile becomes $\{04, 13, 27, 56\}$.
Rotate all $105$ tiles by $0^{\circ}, 90^{\circ}, 180^{\circ}, 270d^{\circ}$, (find & write all quad sets).
Use Excel, reorder the port# numbers from low-to-high, and eliminate all duplicate tiles.
End result = $35$ unique quad sets representing $35$ unique tiles.
May follow my analysis summary at:
There are 5 ways to make a tile that is invariant under $90^\circ$ rotations: Just connect one pint to any other point except its rotational predecessor or successor, then the rest is fixed. This would correct your count to $\frac{105-5}4+5=29$, which is more, but still too few. You should also count, how many tiles are possible with a $180^\circ$ symmetry. Of course, the $90^\circ$ symmetric tiles are among them, but there are also some "new" such tiles. If there are $k$ such tiles, then the total count gets corrected to $\frac{105-5-k}{4}+5+\frac k2$, so you can make an educated guess what $k$ is ;) | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575157745542,
"lm_q1q2_score": 0.8536722822362375,
"lm_q2_score": 0.8688267796346599,
"openwebmath_perplexity": 849.0195871336006,
"openwebmath_score": 0.5815846920013428,
"tags": null,
"url": "https://math.stackexchange.com/questions/1088313/how-many-different-tsuro-tiles-can-exist"
} |
# An extrasensory perception strategy :-)
Inspired by classical Joseph Banks Rhine experiments demonstrating an extrasensory perception (see, for instance, the beginning of the respective chapter of Jeffrey Mishlove book “The Roots of Consciousness”), I consider the following experiment. A deck of cards is given to a magician John. Then John consecutively takes the cards from the deck, trying to guess suit of the taken card. He looks at the card after the guess for a feedback. The magician wishes to maximize the expected number $E$ of right guesses. For this purpose he devised the following Strategy: at each turn to guess a suit which has a maximal number of card left in the deck. As an easy exercise we can prove that for any sequence of cards in the deck Strategy ensures at least $n$ right guesses, where $n$ is the maximal number of cards with one suit in the deck. But we can consider a more interesting and complicated problem to calculate the expectation $E$ for Strategy (here we are assuming that the deck is so well shuffled such that all sequences of cards have equal probability). By the way, I conjecture that Strategy is the best for maximizing the expectation $E$, that is any other strategy yields not greater value of $E$. Now I wish to evaluate the expectation $E$ for Strategy. For the simplicity we shall consider only a case when there are only two suits ($m\ge 0$ cards of the first suit and $n\ge m$ cards of the second suit). Then $E(0,n)=n$ for each $n$ and we have the following recurrence $$E(m,n)=\frac{n}{m+n}(E(m,n-1)+1)+ \frac{m}{m+n}E(m-1,n)$$
for each $n\ge m\ge 1$.
The rest is true provided I did not a stupid arithmetic mistake.
I was interested mainly in asymptotics for the case $m=n$ and computer calculations suggested that $E(n,n)\sim n+c\sqrt{n}+o(\sqrt{n})$ for $c\approx 0.88\dots$.
Evaluating formulas for $E(m,n)$ for small values of $m\le 6$, I conjectured that there is a general formula
$$E(m,n)=n+m\sum_{i=1}^m\frac {c_{m,i}}{n+i}$$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575173068325,
"lm_q1q2_score": 0.8536722752244402,
"lm_q2_score": 0.8688267711434708,
"openwebmath_perplexity": 300.12702655169966,
"openwebmath_score": 0.8994896411895752,
"tags": null,
"url": "https://math.stackexchange.com/questions/614468/an-extrasensory-perception-strategy/614546"
} |
$$E(m,n)=n+m\sum_{i=1}^m\frac {c_{m,i}}{n+i}$$
for each $n\ge m\ge 1$, where $c_{m,i}$ are some integers satisfying the recurrence
$$(m-i)c_{m,i}+ic_{m,i+1}=(m-1)c_{m-1,i}$$
for every $1\le i\le m-1$.
Here are my values for $c_{m,i}$
i\m| 1 2 3 4 5 6
---+------------------------
1 | 1 2 4 8 16 32
2 | -1 -4 -12 -32 -80
3 | 1 6 24 80
4 | -1 -8 -40
5 | 1 10
6 | -1
Then I discovered that for my data $c_{m,i}$ is divisible by $2^{m-i}$. After I did the division, I surprisingly obtained that $$c_{m,i}=(-1)^{i-1}2^{m-i}{m-1 \choose i-1}.$$ I expect that I can easily prove this equality by induction.
But I did not stop at this point because I observed that now the general formula for $E(m,n)$ can be compressed to the form
$$E(m,n)=n+m\int_0^1 x^n(2-x)^{m-1} dx.$$
All of above sounds nice for me and I spent a good time investigating the problem, but I am a professional mathematician, although I am not a specialist in the domain of the above problem. Therefore I care about the following questions. Are the above results new, good and worthy to be published somewhere? What another related problems are worthy to be investigated?
Thanks and merry Holidays.
• – Alex Ravsky Dec 21 '13 at 0:49
• Your expression for $E(m,n)$ looks a lot like Kolmogorov forward equation. – Alex Dec 21 '13 at 1:21
• Is your table of $c_{m,i}$ correct for $i=1$? The triangle and your expression for $c_{m,i}$ looks very like OEIS A013609 – Henry Dec 23 '13 at 22:15
• @Henry Thanks, I corrected the table. – Alex Ravsky Mar 9 '14 at 15:10
• Your integral expression for $E(m,n)$ is closely related to $\displaystyle B_{1/2}(n+1,m) = \int_{0}^{1/2} x^n (1-x)^{m+1} dx$, an incomplete Beta function. – Henry Mar 9 '14 at 16:58
This is to address your question about the asymptotics when $m=n$.
We only need to study the integral
$$I(n) = \int_0^1 x^n (2-x)^{n-1}\,dx$$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575173068325,
"lm_q1q2_score": 0.8536722752244402,
"lm_q2_score": 0.8688267711434708,
"openwebmath_perplexity": 300.12702655169966,
"openwebmath_score": 0.8994896411895752,
"tags": null,
"url": "https://math.stackexchange.com/questions/614468/an-extrasensory-perception-strategy/614546"
} |
We only need to study the integral
$$I(n) = \int_0^1 x^n (2-x)^{n-1}\,dx$$
or, after we've made the change of variables $x = 1-y$,
\begin{align} I(n) &= \int_0^1 (1-y)^n (1+y)^{n-1}\,dy \\ &= \int_0^1 (1+y)^{-1} \exp\left[n \log\left(1-y^2\right)\right]\,dy. \end{align}
We'll proceed using the Laplace method. The quantity $\log(1-y^2)$ achieves its maximum at $y=0$, and near there we have
$$\log\left(1-y^2\right) \sim -y^2.$$
This motivates us to make the change of variables $\log(1-y^2) = -z^2$, so that
$$I(n) = \int_0^\infty \frac{z e^{-z^2}}{(1+\sqrt{1-e^{-z^2}})\sqrt{1-e^{-z^2}}} e^{-nz^2}\,dz.$$
Near $z=0$ we have
$$\frac{z e^{-z^2}}{(1 + \sqrt{1-e^{-z^2}})\sqrt{1-e^{-z^2}}} = 1 - z + \frac{z^2}{4} + \frac{z^4}{96} - \frac{z^6}{384} + \cdots,$$
and integrating term-by-term we obtain the asymptotic series
$$I(n) \approx \frac{\sqrt{\pi}}{2n^{1/2}} - \frac{1}{2n} + \frac{\sqrt{\pi}}{16n^{3/2}} + \frac{\sqrt{\pi}}{256n^{5/2}} - \frac{5 \sqrt{\pi}}{2048n^{7/2}} + \cdots.$$
Thus
$$E(n,n) \approx n + \frac{\sqrt{\pi}}{2} n^{1/2} - \frac{1}{2} + \frac{\sqrt{\pi}}{16} n^{-1/2} + \frac{\sqrt{\pi}}{256} n^{-3/2} - \frac{5 \sqrt{\pi}}{2048} n^{-5/2} + \cdots.$$
• Thanks, this is very good! :-D This correlates with my computer and analytical calculations. As I already wrote, my old computer calculations suggested that $E(n,n)\sim n+c\sqrt{n}+o(\sqrt{n})$ for $c\approx 0.88\dots$. Now I see that $c\approx \sqrt{\pi}/2$ with the precision up to two significant digits. I derived the integral formula only yesterday so I did not try to derive the asymptotics from it yet. Moreover, I did not know about Laplace method. – Alex Ravsky Dec 21 '13 at 6:55 | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575173068325,
"lm_q1q2_score": 0.8536722752244402,
"lm_q2_score": 0.8688267711434708,
"openwebmath_perplexity": 300.12702655169966,
"openwebmath_score": 0.8994896411895752,
"tags": null,
"url": "https://math.stackexchange.com/questions/614468/an-extrasensory-perception-strategy/614546"
} |
If I understand right the game, and picturing the evolution as a path in a discrete grid -from $(0,0)$ to ($n,n$)- it's seen that each segment that goes towards the diagonal is a "win"; the other are misses, except for the ones that start from the diagonal itself, half of which are wins. Then, if the path of length $2n$ have $c$ diagonal-touchings (including the start, excluding the end), the total of wins is $n+c/2$.
Hence, the problem is converted to the (probably simpler and already studied) problem of computing the expected numbers of diagonal touchings on a lattice path - or, in a fair ballot counting problem, compute the expected number of ties (or lead changes).
You ask "What (...) related problems are worthy (of investigation)?"
There is the question of what the expected score is if we use that strategy (which is the best strategy) with a Zener pack of 25 cards, namely which contains 5 cards of each of 5 different shapes. I asked that question here: the answer is 8.65.
Then there are misère problems where we try to mimimise the score. I have asked the misère version of the Zener card question here. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575173068325,
"lm_q1q2_score": 0.8536722752244402,
"lm_q2_score": 0.8688267711434708,
"openwebmath_perplexity": 300.12702655169966,
"openwebmath_score": 0.8994896411895752,
"tags": null,
"url": "https://math.stackexchange.com/questions/614468/an-extrasensory-perception-strategy/614546"
} |
Why is $1 + \frac{1}{2} + \frac{1}{3} + … + \frac{1}{n} \approx \ln(n) + \gamma$?
On StackExchange, I read that the harmonic series up to $\frac{1}{n}$ is approximately $\ln(n) + \gamma$, where $\gamma$ is the Euler-Mascheroni constant, which is close to $0.5772$. When I researched the Euler-Mascheroni constant, I only found it defined in terms of the difference between the harmonic series and $\ln(n)$.
Why is the series able to be approximated in this way, and what is the Euler-Mascheroni constant?
• Draw rectangles representing the sum (i.e. having height $1/n$ on the interval $[n, n + 1]$), and the area representing the integral. In the limit, these are almost the same, and the error is $\gamma$. – user61527 May 22 '14 at 0:16
• It's pretty easy to show, using $$\log n = \int_1^n\frac{dx}{x} = \sum_{i=1}^{n-1}\int_i^{i+1}\frac{dx}{x}$$ that $$\left(\sum_{i=1}^n\frac{1}{i}\right)-\log n$$ converges as $n\to\infty$. You can also easily prove that the limit is between $1/2$ and $1$. This limit, or some variant, is often the definition of the Euler-Mascheroni constant. – Thomas Andrews May 22 '14 at 0:21
• @ThomasAndrews I am sure you have a typo there. – chubakueno May 22 '14 at 0:23
• Fixed. @chubakueno – Thomas Andrews May 22 '14 at 0:24
• I like showing $\gamma$ is between one increasing sequence and one decreasing sequence that are also forced to come together; see math.stackexchange.com/questions/306371/… – Will Jagy May 22 '14 at 3:58
$$\log n = \int_1^n \frac{dx}{x} = \sum_{i=1}^{n-1}\int_{i}^{i+1}\frac{dx}{x}$$
So:
$$\left(\sum_{i=1}^n \frac 1 i\right)-\log n = \left(\sum_{i=1}^{n-1}\int_i^{i+1}\left(\frac 1i-\frac1x\right)dx\right) + \frac{1}{n}$$
Now, for $x\in[i,i+1]$, $0\leq\frac{1}i-\frac1 x\leq \frac{1}{i(i+1)}.$
So these terms are positive and $\sum_{i=1}^\infty \frac{1}{i(i+1)} = 1$. So as $n\to\infty$, this means:
$$\left(\sum_{i=1}^n \frac 1 i\right)-\log n$$ converges to a value less than $1$. | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575111777184,
"lm_q1q2_score": 0.8536722715679183,
"lm_q2_score": 0.8688267728417087,
"openwebmath_perplexity": 262.90362399705697,
"openwebmath_score": 0.9452646970748901,
"tags": null,
"url": "https://math.stackexchange.com/questions/804764/why-is-1-frac12-frac13-frac1n-approx-lnn-gamm"
} |
$$\left(\sum_{i=1}^n \frac 1 i\right)-\log n$$ converges to a value less than $1$.
It's actually pretty easy to show, since $f(x)=1/x$ is concave, that:
$$\int_i^{i+1}\left(\frac 1i-\frac1x\right)dx>\frac{1}{2i(i+1)}$$
This means that the limit is between $1/2$ and $1$.
This is often the definition of the Euler-Mascheroni constant.
• Don't you need to show the series is increasing? Or have you shown that and I'm missing something. – Alex Zorn May 22 '14 at 0:49
• If $0<a_i<b_i$ and $\sum b_i$ converges, then $\sum a_i$ converges. Basically, $\sum_{i=1}^n a_i$ is increasing as $n\to\infty$ and is bounded above, therefore converges. – Thomas Andrews May 22 '14 at 1:14
As noted in the comments, the "computational" answer is that, comparing areas, we find
$$\int_1^{n+1}\frac{dx}{x}<1+{1\over 2}+\cdots +{1\over n}<1+\int_1^n\frac{dx}{x}$$ Evaluating the integrals gives $$\ln(n+1)<1+{1\over 2}+\cdots +{1\over n}<1+\ln n$$ so we have the very rough approximation that, denoting $$H_n=1+{1\over 2}+\cdots +{1\over n}$$ the sum is around $H_n\approx \ln n$.
A more insightful perspective is to compare the nature of the functions $H_n$ (often called the "harmonic sum") and $\ln x$. The former is discrete, and the latter continuous. In "discrete calculus" you often see $$\Delta f(n)=f(n+1)-f(n)$$ which is the discrete analogue of the derivative. Note that the "derivative" of the harmonic sum is $$\Delta H_n=H_{n+1}-H_n=\left(1+\cdots +{1\over n+1}\right)-\left(1+\cdots +{1\over n}\right)={1\over n+1}$$
Similarly, the derivative of the logarithm is $$\textrm{D}\ln x={1\over x}$$ | {
"domain": "stackexchange.com",
"id": null,
"lm_label": "1. YES\n2. YES",
"lm_name": "Qwen/Qwen-72B",
"lm_q1_score": 0.9825575111777184,
"lm_q1q2_score": 0.8536722715679183,
"lm_q2_score": 0.8688267728417087,
"openwebmath_perplexity": 262.90362399705697,
"openwebmath_score": 0.9452646970748901,
"tags": null,
"url": "https://math.stackexchange.com/questions/804764/why-is-1-frac12-frac13-frac1n-approx-lnn-gamm"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.