What is Notation: Definition and 1000 Discussions

In linguistics and semiotics, a notation is a system of graphics or symbols, characters and abbreviated expressions, used (for example) in artistic and scientific disciplines to represent technical facts and quantities by convention. Therefore, a notation is a collection of related symbols that are each given an arbitrary meaning, created to facilitate structured communication within a domain knowledge or field of study.
Standard notations refer to general agreements in the way things are written or denoted. The term is generally used in technical and scientific areas of study like mathematics, physics, chemistry and biology, but can also be seen in areas like business, economics and music.

View More On Wikipedia.org
  1. G

    MHB Integral Notation of an exponential Brownian motion

    Good day! I am reading the paper of Marc Yor (www.jstor.org/stable/1427477). equation (1.a) seems unfamiliar to me since the $ds$ comes first before the exponential part; $$ \int_0^t ds \exp(aB_s + bs). $$ Can you please help me clarify if there is a difference with the above notation as...
  2. H

    How to write taylor series in sigma notation

    Homework Statement My Calc II final is tomorrow, and although we never learned it, it's on the review. So I have a few examples. Some I can figure out, some I cant. Examples: f(x)=sinh(x), f(x)=ln(x+1) with x0=0, f(x)=sin(x) with x0=0, f(x)=1/(x-1) with x0=4 The only one of those that I was...
  3. B

    Evaluating the sum of a sigma notation problem with a lower limit k=10

    How do I evaluate the sum of this sigma notation problem? 20 ∑ k k=10 Normally, I would think to use the theorem for the sum of the first n integers: n ∑ k = n(n+1)/2 k=1 I don't know how to do this, however, since the lower limit is k=10, not k=1. My professor wrote this note on the board...
  4. I

    Confusion with definition and notation of reciprocal.

    Hello everyone, I have some conceptual issues with aforementioned definitions. How is exactly multiplicative inverse defined? Say, for a rational, nonzero number a/b, its reciprocal is b/a. Is there a certain operation that transforms a/b to b/a? Also, the notation for multiplicative...
  5. shounakbhatta

    What is the Meaning of "f:N^n -->N"?

    Hello, Can anybody tell me the meaning of f:N^n -->N
  6. M

    Opposites Attract: Understanding O Notation in Math & CS

    Hi, I noticed in mathematics the O symbol is used in the following way: A term T is in O(x^p), if lim x->0 T/x^p=c, for a constant c. While in computer science the O symbol is used is this way: A term T is in O(x^p), if lim x->∞ T/x^p is a constant. What gives, these two notations...
  7. R

    What is the notation for the dual field strength in D=11 Five-Brane theory?

    Hello, I am reading the paper "Covariant Action for a D=11 Five-Brane with the Chiral Field". I don't understand the (\partial a)^2 in the dual field strength \widetilde{F}_{mn}\equiv\frac{1}{\sqrt {(\partial a)^2}}F^*_{mnl}\partial^la(x). Is it ##\partial_ra\partial^ra##? Regards.
  8. A

    Question about big Oh notation

    Suppose I have a function of x and t such that f(x,t) \leq x^{1/2} \sqrt{1+t^2}. How should I express this in big Oh notation in terms of both x AND t?
  9. B

    Dirac's equation notation definition?

    Homework Statement I've been asked to write what this is explicitly - γμ∂μ Homework Equations (γμ∂μ-im)ψ = 0 - Dirac's equation The Attempt at a Solution I understand that γμ is a matrix but depending on what μ is they're all completely different :S How can it be written...
  10. W

    Vector Notation for Work: An Exploration of Force and Displacement

    Homework Statement Homework Equations Work = F* delta x The Attempt at a Solution My thought process since the force is given in vector notations multiply the pair of i components together same applies with j and k components. However this process actually strangely does not...
  11. B

    What do the symbols \delta and \upsilon represent in IR spectroscopy?

    Hi there. First time PF poster. I have a question about interpreting IR spectro graphs. I get the general idea of interpreting the sharpness and strength of the line but when I need to ID the pulse down I have to choose between \delta and \upsilon (or mabe its just v) version of the...
  12. J

    Linear Transformations Notation

    My prof uses this all over his notes, and I'm still not 100% sure what he means by it: C[T]B or B[T]B From what I can gather, it has something to do with a transformation matrix, but where the B and C come into play, I have no idea.
  13. C

    Dirac Notation, Observables, and Eigenvalues, OH MY

    Alright... So I'm in an 'introductory' Q.M class in college right now, it's the only one that this two-year college has, so I don't have an upper division Q.M Profs to talk to about this, and since my prof is equally confused, I turn to the internet. Okay, so everyone knows that <ψ|Aψ> = <a>...
  14. C

    What is the difference between P(A) and O(A)?

    In probability, P(A) is the probability of event A occurring. What is O(A), in the same context? I've tried looking this up, but I can't find the definition/explanation of this notation anywhere. For an example, see the definition of "Bayes' rule".
  15. Jalo

    Simple Dirac Notation Problem: Dot Product of Two Vectors

    Homework Statement Imagine you have two vectors |a> and |b> such that: |c> = |a> + |b> Now imagine you want the dot product: <c|a> Is that the same as: <c|a> = [ <a|*+<b|* ] |a> = <a*|a> + <b*|a> where * represents the complex conjugate of the vector? Homework Equations...
  16. S

    Index Notation Identity for Vector Fields

    Homework Statement Simplify the following, where A and B are arbitrary vector fields: f(x) = ∇\bullet[A \times (∇ \times B)] - (∇ \times A)\bullet(∇ \times B) + (A \bullet ∇)(∇ \bullet B) I know that the correct solution is A \bullet ∇2B, according to my professor. However, I can't...
  17. M

    Notation row/column of matrix.

    Is there notation to denote the i-th row of a Matrix or j-th column?
  18. G

    What Do the Lowercase Deltas Stand For?

    Hi! I've got a problem with understanding notation in this lecture: http://www.youtube.com/watch?v=FZDy_Dccv4s&feature=BFa&list=PLF4D952FA51A49E66 For example, at 00:44:13, what does all lowercase deltas stand for? He writes: δA=∫(∂L/∂q)δq + (∂L/(∂q dot))δ(q dot) Why lowecase delta? What...
  19. T

    Big-Oh Notation Homework: Determine Complexity of Code

    Homework Statement Determine the complexity of the following code: for (i = 0; i < 2*n; i += 2) { for (j=n; j > i; j--) { a++; } } The Attempt at a Solution Well.. The first for block is O( n ) because i is incremented by 2 each loop up to 2n. The second block...
  20. S

    Understanding Tensor Integration Notation for 4-Dimensional Space

    Hi, I have been going round in circles trying to figure it out so I figured it would be quickest and easiest to just ask: What is the definition of: \int f(x) d^4 x I first thought it was: =\int \int \int \int f(x) dx^1 dx^2 dx^3 dx^4 but now I am starting to think it is...
  21. H

    Function Notation in Real Numbers: What Does it Mean?

    f: ℝ^n→ℝ\qquad g: ℝ^n→ℝ^m
  22. F

    Einstein notation question

    While taking notes in class, I was trying to write the moment of inertia tensor in Einstein notation as Iij instead of a 3x3 matrix, but when we diagonalized the matrix with diagonal elements Ii, I was confused on how to write it. Ii doesn't work because that means that treats it as a vector...
  23. H

    Why can't the indefinite integral be written with sigma notation?

    Hi, I've been wondering this since I started learning integration. I get that ∫ is basically an elongated S for "sum", because that is what it is basically doing. But then Ʃ does the same thing as well. If I'm understanding the difference, it is that Ʃ increments by finite measures, whereas ∫...
  24. B

    Matrix Multiplication and sigma notation

    Hello, I have read several different sources on this very topic, and the one thing that confused a little was defining it using sigma notation. Could some please explain to be what it means?
  25. S

    Simple quantum mech notation question

    Homework Statement I see in chapters on perturbation theory and time-dependent variation, the Hamiltonian (usually expressed as H) is now printed as H(t). This is still the same Hamiltonian, correct? I assume this notation simply helps to signify that the total energy varies with time? If...
  26. T

    Confusing index notation involving grad of w cross r

    Homework Statement consider the position vector expressed in terms of its cartesian components, r=xiei. Let w=wjej be a fixed vector whose components wj are constants that do not depend on the xi, so that δwj/δxi = 0 Homework Equations I am trying to evaluate ∇((wXr)^2) The...
  27. N

    Notation of Matrices: Question from Niles

    Hi I have a question regarding notation of matrices. I am trying to conserve space in my report, so instead of writing my matrix fully like this \left( {\begin{array}{*{20}c} 1 & 2 \\ 0 & { - 5} \\ \end{array} } \right) my plan is to write it as (1,0 ; 2 -5)^T. Is this notation...
  28. S

    Why Does Bra-Ket Notation Assume Linearity in Quantum Mechanics?

    hello, after some struggle,i finally understand these notations, but there is a problem. i'm studying with "principles of quantum mechanics" [R. Shankar]. in the beginning of the chapter where he discusses 'bra-kets' he mentioned the axioms of inner product. one of the axioms he mentioned...
  29. S

    Can Properties of Sigma Notation Prove Equivalence of Two Sums?

    Homework Statement Prove that: \sum_{n=1}^{14} 10n = \sum_{n=1}^{7} (20n+70) Homework Equations properties of sigma notation The Attempt at a Solution I know several properties of sigma notation but none that I know can be used to prove this. I don't know how to change 10 n to 20...
  30. J

    Determining the commutation relation of operators - Einstein summation notation

    Determining the commutation relation of operators -- Einstein summation notation Homework Statement Determine the commutator [L_i, C_j] . Homework Equations L_i = \epsilon_{ijk}r_j p_k C_i = \epsilon_{ijk}A_j B_k [L_i, A_j] = i \hbar \epsilon_{ijk} A_k [L_i, B_j] = i \hbar...
  31. F

    MHB How is the parital derivative (even in Leibniz notation) ambiguous?

    I had taken a multi-variable calculus course and since have misplaced my notes. I recall the prof inventing his own notation because somewhere partial derivatives using Leibniz notation don't show the correct path. I think it was something like if you had a function f(x,y)=z and y depended on x...
  32. J

    Simplification of Dirac Notation

    How would you simplify this expression: <a|<b|a>|a> where ψ = |a>|b> and I'm finding ψ*ψ.
  33. R

    Operators interpretation (Dirac notation)

    Hi all! If you are given an operator such that A|1> = √(1/3) |1> +√(2/3) |2>, how do we interpret it? I do know that 1/3 and 2/3 are probabilities but is this operator application on state one suggesting that this state in state 1 and 2 with probabilities 1/3 and /3 respectively? Thank you!
  34. R

    What does the operator C^3 represent in Bra-ket notation?

    Hi If C is an operator such that C|1> = |1> and C|2>=|2>, then C^3 |1>= |1>|1>|1> =|1> ^ 3 ? If yes, then what does this C^3 represent? :confused:
  35. G

    Cycle notation of permutations

    Homework Statement How many elements of each cycle-type are there in S5? The Attempt at a Solution One way of working this out would be to write out each permutation and see how many 2-cycles, 3-cycles ,4-cycles and 5-cycles there are but given that there are 5! permutations this would...
  36. S

    Simple GR Einstein Notation Question

    In reviewing some basic GR (just to keep my old brain sharp), i was looking at the Einstein notation cinvention and was a bit confused. I see how you do the dot product of say: ei.ej = δij (i.e. 1 or 0) But then the book I'm reading talks about ei.ej or ei.ej. Isn't that just the...
  37. B

    Prove Perpendicularity of (AxB) and A Using Tensor Notation

    Homework Statement Prove that (AxB) is perpendicular to A *We know that it is in the definition but this requires an actual proof. This is what I did on the exam because it was quicker than writing out the vectors and crossing and dotting them. Homework Equations X dot Y = 0 when...
  38. A

    Understanding Symplectic Notation and its Equivalence to Traditional Methods

    I have some trouble understanding the attached section of my book. Basically I can't see why the marked equations are equivalent - that is the first two are contained in the last one. I can follow the derivation but when I do an example for myself where I just have two variables (q,p) being...
  39. A

    Symplectic Notation: Confused by Subscripts i & j?

    The attached is a section of the derivation of canonical transformation from the symplectic formulation. I tend to get very confused by the subscripts i and j. For me they both run from 1 to 2n and can be used interchangeably. But of course that is not the case since equation (9.53) on the...
  40. A

    Simplifying Index Notation in Vector Calculus

    (r×∇).(r×∇)=r.∇×(r×∇) now in index notation it is written as, =xi∂jxi∂j-xi∂jxj∂i but when I tried to prove it ,it just came out twice.can anyone tell how it is correct(given is the correct form).i really mean that i was getting four terms which gave twice of above after reshuffling...
  41. S

    Index Notation Help: Solving ∫∂k(gixiεjklxl)dV

    Homework Statement ∫ ∂k(gixiεjklxl dV Can anyone make sense of this? I know I'll need to apply the chain rule when taking the derivative, but I'm not quite sure how to proceed. Also, this is part of a larger problem where g is a gravity vector existing purely in the -z direction, but I...
  42. H

    Vector Notation, arrow coupled with hat versus hat alone

    I've attached the .pdf from which I have questions. After it says "Take the square of the numerator" halfway down the page, there is an equation that lists vector components with hats and arrows at the same time, and the arrow on other vectors. Can someone help explain the difference to me...
  43. 9

    Basic Notation Help for Intro Economics Course: Calculus, Functions, and Sets"

    Homework Statement In an intro Economics course, the teacher gave us some questions regarding function notation. I learned calculus to a decent level, but I have problems with notation. Homework Equations Question 1. Give an explicit expression for the following set: { x : x ∈ Z and x < 2 }...
  44. J

    How to Verify Big O Notation for (n^2 + 3n - 3)/n^3 = 0 + O(2/n)

    Homework Statement Verify that (n^2 + 3n -3)/n^3 = 0 + O(2/n) Homework Equations The Attempt at a Solution I really don't have an attempt. I understand Big O notation, but I don't know how to verify this.
  45. S

    Understanding Division in Index Notation

    Hello everyone, Recently I started to use index notation, but still the division is not clear for me. I'll mention just some simple examples that I'm not sure about: Does a =\frac{1}{b_i} mean that a = \sum_{i=1}^{3}\frac{1}{b_i} or a = 1 / \sum_{i = 1}^{3}b_i ? Similarly, does a_i...
  46. T

    Vector notation / manipulation question

    Homework Statement Xuv is a 4x4 tensor and Vu is a vector. Vu = (-1, 2, 0, -2) (i.e. it is a 1x4 vector). Find the quantities Vu Vu and Vu Xuv Homework Equations Given above The Attempt at a Solution I'm having trouble finding Vu. Initially I thought that it should be the...
  47. S

    Index Notation - Prove the following

    Homework Statement http://imgur.com/gTapO Homework Equations The Attempt at a Solution The first one is easy, just use the fact that δi = δ/δxi and it reduces to the sum from with i=1,2,3 of δxi/δxi = 1 + 1 + 1 I tried to do a similar thing with the second one, also using...
  48. L

    Better explanation of ket notation

    Homework Statement I have two separate problems with the same issue; I don't grasp what information the equation of state is giving me. a. A system with l=1 is in the state ψ> = (1/√2) 1> - (1/2) 0> + (1/2) -1> Find Ly. b. A spin 1/2 is in the state ψ> = (1+i)/3 +> + (1/√3) ->...
  49. D

    Leibniz notation when taking derivatives

    Hello,I am encountering some major confusion. When taking just garden variety f(x)=y derivatives of the form dy/dx, I don't encounter any problems. But recently I started taking derivatives of parametric equations, or switching things up using polar equations and I realized perhaps I'm not so...
  50. S

    Understanding Index Notation: Allowed Combinations Explained

    I'm not sure if this is the correct place to ask this question, so please let me know if there is a better place for me to post it. I'm having trouble understanding index notation. I understand the basics, such as in the following examples: (a x b) = εijkajbk εijkεiab = δjaδkbδjbδka...
Back
Top