Understanding Symbols in Physics Equations: What Do They Mean?

  • Thread starter Thread starter BrainMan
  • Start date Start date
  • Tags Tags
    Mean Symbols
Click For Summary
SUMMARY

The discussion focuses on the notation used in physics equations, specifically the exponential function represented as exp(x), which is equivalent to e^x. Participants clarify that the brackets in exp(x) serve to indicate separate calculations, similar to parentheses. The conversation also highlights the utility of this notation in programming languages like Java, where Math.exp(x) computes the natural exponential function. Additionally, the natural exponential function is confirmed to be Euler's number, e.

PREREQUISITES
  • Understanding of exponential functions, specifically e^x
  • Familiarity with programming concepts in Java
  • Basic knowledge of mathematical notation and functions
  • Awareness of natural logarithms and Euler's number
NEXT STEPS
  • Research the properties of the natural exponential function and its applications
  • Learn how to implement mathematical functions in Java, focusing on Math.exp() and Math.pow()
  • Explore the significance of Euler's number in various mathematical contexts
  • Study the use of parentheses and brackets in mathematical expressions for clarity
USEFUL FOR

This discussion is beneficial for physics students, programmers using Java, and anyone interested in understanding mathematical notation in scientific contexts.

BrainMan
Messages
279
Reaction score
2

Homework Statement


I have been reading a lot about physics and equation that look like the photo I attached. What do the brackets and the EXP mean?


Homework Equations





The Attempt at a Solution

 

Attachments

  • equation.png
    equation.png
    9.5 KB · Views: 500
Physics news on Phys.org
I cannot see the attached image, however, if you mean something like this: \exp (x) that is just the exponential function, so \exp(x) = e^x

It's just a more convenient way of representing the function when its arguments start to get complicated
 
The brackets are just that- a way of indicating a separate calculation, no different from parentheses.
 
matineesuxxx said:
I cannot see the attached image, however, if you mean something like this: \exp (x) that is just the exponential function, so \exp(x) = e^x

It's just a more convenient way of representing the function when its arguments start to get complicated
HallsofIvy said:
The brackets are just that- a way of indicating a separate calculation, no different from parentheses.
Here is a better picture
ImageUploadedByPhysics Forums1407259101.931582.jpg

If someone could write it without EXP that would be great so that I know what you guys are talking about.
 
The exp() notation is useful though if you are writing an expression in some programming languages such as Java where

Code:
double x = 3.2;
double y = Math.exp(x);       // refers to the e^x math function

For more general exponentiation then:

Code:
double x =3.2;
double y = 4.3;
double z = Math.pow(x,y);     // for x^y math function
 
Last edited:
##I = C_1 + C_2 G - C_3(e^{\frac {V} {C_4T_{cc}}} - 1) - C_5(e^{\frac {V} {C_6T_{cc}}} - 1) - \frac {V} {C_7T_{cc}}##
 
AlephZero said:
##I = C_1 + C_2 G - C_3(e^{\frac {V} {C_4T_{cc}}} - 1) - C_5(e^{\frac {V} {C_6T_{cc}}} - 1) - \frac {V} {C_7T_{cc}}##

Where are you getting the e? Is that euler's number?
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
1K
Replies
2
Views
1K
  • · Replies 7 ·
Replies
7
Views
1K
  • · Replies 64 ·
3
Replies
64
Views
6K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 13 ·
Replies
13
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 9 ·
Replies
9
Views
1K