Function Definition and 1000 Threads

  1. LCSphysicist

    Wave function for the Helium molecule

    I am having a trouble to understand why the helium's wave function (in which we are ignoring the electric interaction between the electrons, as well the motion and problems that arise in considering the nucleus in the wave function) can be written as the product of the wave function of both...
  2. D

    Verify or refute the function is a solution to a PDE

    Solution attempt: We first write ##u(x)=\frac{1}{2}||x||^2## as ##u(x)=\frac{1}{2}(x_1^2+x_2^2+...+x_n^2)## Operating on ##u(x)## with ##\Delta##, we have ##u(x)=\frac{1}{2}(2+2+...+2)## adding 2 to itself ##n## times. So ##\Delta u(x)=n## and the function satisfies the first condition...
  3. MahdiI84

    I Obtain the Density of State using the Green function

    Hi everyone. Using the Green function, I want to obtain the density of states of a one-dimensional (linear) lattice. Depending on the problem conditions, we will have an iterative loop with 4,000 data for the energy component and a iteration loop with 2,000 data for the wave number component. In...
  4. F

    Four-momenta trend as a function of proper time

    As a starting point I immediately thought about the equation: ##\frac{dp^\mu}{d\tau}=qF^{\mu\nu}v_\nu## From this I proceed component by component: ##\frac{dp^0}{d\tau}=qF^{0\nu}v_\nu=q\gamma E_yv_y## ##\frac{dp^1}{d\tau}=qF^{1\nu}v_\nu=q\gamma v_yB_z##...
  5. A

    I Taylor expansion of an unknown function

    Hello, I have a question regarding the Taylor expansion of an unknown function and I would be tanksful to have your comments on that. Suppose we want to find an analytical estimate for an unknown function. The available information for this function is; its exact value at x0 (f0) and first...
  6. Y

    C/C++ Why Does My C++ Divide Function Not Compile?

    Hi I just moved into Chapter 16 of Gaddis on Exception, Templates and STL. Seems like it jump a chapter. This is a partial sample from the book: I have to complete the program as shown below but compiler doesn't like it. #include <iostream> #include <functional> using namespace std; int...
  7. N

    Separating a wave function into radial and azimuthal parts

    I know how to work through this problem but I have a question on the initial separation of the wave function. Assuming ##\psi(\rho, \phi) = R(\rho)\Phi(\phi)## then for the azimuthal part of the wavefunction we have ##\Phi(\phi)=B\left(\frac \rho\Delta cos\phi+sin\phi\right)##, but this function...
  8. Arman777

    I Solving an equation that contains the floor function

    Let suppose I have three positive integers ##a, b,c## and one unknown ##x## (##x## is also a positive integer). Solve for the smallest ##x## that satisfies this equation$$\left \lfloor\frac{x}{a} \right\rfloor + \left \lfloor \frac{x}{b} \right\rfloor \geq c$$ where ##\lfloor x\rfloor## is the...
  9. M

    Finding marginal distribution of 2d of probability density function

    Hi, I have question about finding marginal distributions from 2d marginal pdfs that lead to the probabilities being greater than 1. Question: If we have the joint probability distribution ## f(x, y) = k \text{ for} |x| \leq 0.5 , |y| \leq 0.5 ## and 0 otherwise. I have tried to define a square...
  10. S

    MATLAB Turning Fourier coefficients into an interpolated freq domain function

    Hi, I am interested in understanding the relationships between Fourier series and Fourier transform better. My goal is 1) Start with a set of ordered numbers representing Fourier coefficients. I chose to create 70 coefficients and set the first 30 to the value 1 and the remaining to zero. 2)...
  11. M

    Mathematica Extract points from an interpolated curve (not a function)

    Hi PF! I have the given data points here data = {{1.92, 0.74}, {2.32, 1.36}, {2.44, 1.88}, {2.52, 2.08}, {2.68, 1.92}, {2.64, 1.4}, {2.46, 0.78}}; and the following plots the correct interpolation Show[{ListLinePlot[{data}, InterpolationOrder -> 3], ListPlot[\[Lambda]cplx1]}] but...
  12. S

    What is the domain of a trig function with y = 2sin(x)?

    y = 2sin(x) -1≤ sin(x) ≤ 1 -2 ≤ 2sin(x) ≤ 2 so -2 and 2 are the max/min limits but the domain is -π < x ≤ π Do I find the values of x that outputs -2 and 2 and show that they are within the domain ?
  13. M

    I Probability: why can we use the Dirac delta function for a conditional pdf?

    Hi, I have a quick question about something which I have read regarding the use of dirac delta functions to represent conditional pdfs. I have heard the word 'mask' thrown around, but I am not sure whether that is related or not. The source I am reading from states: p(x) = \lim_{\sigma \to...
  14. chwala

    Integration of a trig function

    This is my first attempt ...
  15. C

    MHB Write function to model combined rate

    The assignment states: Pipe A takes 20 hours longer to fill swimming pool than pipe B. Together, pipe A and pipe B can fill the swimming pool in 30 hours. The assignment question I am stuck on is to write a function R(x) that models the combined rate of the two pipes in relation to the time it...
  16. F

    Show that the real part of a certain complex function is harmonic

    Hello, I have to prove that the complex valued function $$f(z) = Re\big(\frac{\cos z}{\exp{z}}\big) $$ is harmonic on the whole complex plane. This exercice immediately follows a chapter on the extension of the usual functions (trigonometric and the exponential) to the complex plane, so I tend...
  17. chwala

    Integration of a trigonometic function

    my thinking was to have everything changed to a function that has cosine only... ##\int_0^{0.5π} \frac {1-cos^2x}{sin x + cos x}dx## ##\int_0^{0.5π} \frac {(1-cos x)(1+cos x)}{(1-cos^2x)^{0.5} + cos x}dx## ... first of all is this integration possible? if so then let me know if i am on the...
  18. Tony Hau

    I The derivative of the complex conjugate of the wave function

    It is a rather simple question: In my textbook it writes something like: $$\frac {\partial \Psi} {\partial t}= \frac{i\hbar}{2m}\frac {\partial^2 \Psi} {\partial x^2}- \frac{i}{\hbar}V\Psi$$ $$\frac {\partial \Psi^*} {\partial t}= -\frac{i\hbar}{2m}\frac {\partial^2 \Psi^*} {\partial...
  19. J

    C/C++ C++: Calling function in main.cpp from another .cpp file

    I am trying to call a function declared in a .hpp file and defined in the corresponding .cpp file, from my main.cpp file, but I keep getting an error. From what I have googled it seems as if I am doing this the right way, so I was hoping you guys could help out. Here's my code: #ifndef CHAP_HPP...
  20. Swamp Thing

    I Looking for S-shaped function with range 0 to 1 (but not asymptotic)

    At 02:08, this video shows a function that grows from exactly 0 at input x = 0+, up to 1 at ##x=\infty##. Its value and all its derivatives approach 0 as x -> 0. The function is Exp(-1 / x^2). www.youtube.com/watch?v=Wwg_15a0DJo&t=146s Q. : What function would have its value and all...
  21. A

    A Is the notion of elementary function a fluid concept among algebras?

    Let's consider the Taylor power series of a function on real numbers. Some of them represent elementary functions, and some of them represent special functions. The special functions cannot be expressed via finite combination of elementary functions on real or complex numbers. Now, take some...
  22. J

    Minimum or Maximum value of a multivariate function

    First thank you for taking your time to take a look at this simple question. And sorry for the informal math language and equations, I hope you guys can understand it. So, depending on the case, I have 2 or 8 simple quadratic functions f(a), f(b), f(c),… f(z). Each a,b,c,…,z have a different...
  23. penroseandpaper

    Odd and even extension of sine function

    Hi everyone, We've been looking at Fourier series and related topics in online class, touching upon odd and even periodic extensions. However, we haven't looked at what this translates to for sine and cosine functions - only sawtooth and line examples. So, I'm trying to do my own investigation...
  24. Tony Hau

    Finding the Fourier Series of a step function

    The answer in the textbook writes: $$ f(x) = \frac{1}{4} +\frac{1}{\pi}(\frac{\cos(x)}{1}-\frac{\cos(3x)}{3}+\frac{\cos(5x)}{5} \dots) + \frac{1}{\pi}(\frac{\sin(x)}{1}-\frac{2\sin(2x)}{2}+\frac{\sin(3x)}{3} + \frac{\sin(5x)}{5}\dots)$$ I am ok with the two trigonometric series in the answer...
  25. mjmnr3

    Partition function of a particle with two harmonic oscillators

    Here is the solution I have been given: But I really don't understand this solution. Why can I just add these two exponential factors (adding two individual partition...
  26. greg_rack

    Horizontal inflection point of a parametric polynomial function

    For ##x=-1## to be an *horizontal* inflection point, the first derivative ##y'## in ##-1## must be zero; and this gives the first condition: ##a=\frac{2}{3}b##. Now, I believe I should "use" the second derivative to obtain the second condition to solve the two-variables-system, but how? Since...
  27. L

    MHB Is an increasing monotonic function in a closed interval also continuous?

    Hello all, Is this statement true ? Is every increasing monotonic function in a closed interval also continuous ? How do you prove such a thing ? Thank you !
  28. L

    MHB Is non continuous function also not Bounded ?

    Dear all, I am trying to figure out if a non continuous function is also not bounded. I know that a continuous function in an interval, closed interval, is also bounded. Is a non continuous function in a closed interval not bounded ? I think not, it makes no sense. How do you prove it ? Thank...
  29. T

    Determine whether a function is continuous or differentiable

    Perhaps use the definition of continuity, partial differentiability?
  30. mcastillo356

    B Limit of a function raised to a fractional power

    Hi, PF This is the quote: "If ##m## is an integer and ##n## is a positive integer, then 6. Limit of a power: ## \displaystyle\lim_{x \to{a}}{\left[f(x)\right]^{m/n}} ## whenever ##L>0## if ##n## is even, and ##L\neq{0}## if ##m<0##" What do I understand? -whenever ##L>0## if ##n## is even: ##m##...
  31. JD_PM

    Computing a wave function through a (non-relativistic) propagator

    We know that the non-relativistic propagator describes the probability for a particle to go from one spatial point at certain time to a different one at a later time. I came across an expression (lecture notes) relating ##\Psi(x,t)##, an initial wave function and the propagator. Applying the...
  32. E

    A Feynman solution for the radial wave function of the hydrogen atom

    Reading the classical Feynman lectures, I encounter the formula(19.53) that gives the radial component of the wave function: $$ F_{n,l}(\rho)=\frac{e^{-\alpha\rho}}{\rho}\sum_{k=l+1}^n a_k \rho^k $$ that, for ##n=l+1## becomes $$ F_{n,l}=\frac{e^{-\rho/n}}{\rho}a_n\rho^n $$ To find ##a_n## I...
  33. gind_id

    LOGPEARSONDIST and LOGNORMALDIST Function in PHP

    for reference you can see JS in formulajs.info/functions. lognormdist use by call : formulajs.LOGNORMDIST(value, mean, stdev, true) logpearsondist use by call : formulajs.NORMSDIST(z, true) anybody can help?
  34. D

    Finding the image of a multivariate function

    Hi all, I am trying to figure out a way to simplify this problem to give the image of the map. I have not seen this function before and I am having trouble figuring out what the image should come out as. I have tried graphing u and v separately as a function of x and y in R3 and both surfaces...
  35. dRic2

    I Can Functions Have Complex Poles Beyond Infinitesimal Limits?

    Suppose I have a function $$f(x) = \lim_{\eta \rightarrow 0} \int_{-\infty}^{\infty} d \zeta \frac {g(\zeta)}{x - \zeta + i \eta}$$ and suppose ##g(\zeta)## is a continuous (maybe even differentiable) function. Can ##f(x)## have complex poles of the form ##a + ib## with ##b## not an...
  36. V

    MHB A function given by a logical expression write in the truth table.

    Hi I need help I'm lost Assignment: A function given by a logical expression Y = A.B.D + A.not (C) .D + A.not (B) .C.D + A.D write in the truth table.
  37. diazdaiz

    Find the function of velocity of a person that accelerates to a constant v

    for example, I want to know velocity of a person when time is equal to t, that person start running from 0m/s (t=0s) to max velocity of 1m/s (t=1s). I am thinking that this is like rain droplet that affected by gravity and drag force, where force is directly proportional to its velocity, to make...
  38. P

    A Green's function calculation of an infinite lattice with periodicity in 1D

    I am currently trying to compute the Green's function matrix of an infinite lattice with a periodicity in 1 dimension in the tight binding model. I have matrix ##V## that describes the hopping of electrons within each unit cell, and a matrix ##W## that describes the hopping between unit cells...
  39. F

    Find the value of x for which the function is discontinuous

    Could someone confirm my answer please?
  40. Martian2020

    B Does the wave function change from the viewpoint of the photon?

    The question arose when watching Sean Carroll video: The Biggest Ideas in the Universe _ Q&A 6 - Spacetime 3:50 - 13:30 Because photons follow null geodesic in spacetime the question arose from viewers: "photons do they really experience no time this is a question" And in the answer: "but if...
  41. D

    Rotational partition function for CO2 molecule

    Hello fellow physicists, I need to calculate the rotational partition function for a CO2 molecule. I'm running into problems because I've found examples were they say this rotational partition function is: ##\zeta^r= \frac T {\sigma \theta_r} = \frac {2IkT} {\sigma \hbar^3}## Where...
  42. F

    Find the Limit of the Heaviside Step Function Added to this Graph

    Here's my attempt: I would like to confirm my answers.
  43. greg_rack

    What Are the Inflection Points of a Second Derivative Function?

    Since the index of the root is odd, the domain is going to be ##R##, and I can calculate the second derivative to be: $$y''=\frac{1}{3}\times \frac{e^x(e^x-3)}{3(e^x-1)^{\frac{5}{3}}}$$ Studying the sign of this function, it results positive for ##x<0 \vee x>ln(3)##, so the main function will be...
  44. S

    Engineering Write the differential equation that's equivalent to this transfer function

    I have the solution to the problem, and I mechanically, but not theoretically (basically, why do the C(s) and R(s) disappear?), understand how we go from ##(s^5 + 3s^4 + 2s^3 + 4s^2 + 5s + 2) C(s) = (s^4 + 2s^3 + 5s^2 + s + 1) R(s)## to ##c^{(5)}(t) + 3c^{(4)}(t) + 2c^{(3)}(t) + 4c^{(2)}(t) +...
  45. M

    A sudden change in the depth of delta function potential well

    is it correct that the continuum states will be free particle states? and the probability will be |< Ψf | ΨB>|^2 . Where Ψf is the wave function for free particle and ΨB is the wave function for the bound state when the depth is B.
  46. cianfa72

    Circuit theory - Resistor function for dynamic non linear circuits

    Hi, I'm reading the following paper (L. Chua) about the state-of-art of dynamic non linear circuit analysis -- Chua_Dynamic_Circuits I've a doubt about Theorem 2 on section 3.2 On the Existence of the Resistor Function that establishes sufficient conditions for the existence of network...
  47. P

    Engineering 2 j-terms in a transfer function?

    I have the above transfer function for this filter design The transfer function becomes which then becomes Now when I try to use this transfer function to plot a bode plot, I always end up with negative terms which i can't get the square root of For example, at 1hz, where w = 6.283 R1 = 1705...
  48. sergey_le

    I Find the domain of a function of the form: ln(sin(1/x))

    the solution
  49. brotherbobby

    Which points on the plane satisfy the given equation?

    Given the equation : ##|y| x = x##. Two conditions are possible : (1) ##\underline{y\geq 0}## : ##xy = x\Rightarrow \boxed{y = 1}\; (x \neq 0)##. We note that except for zero, ##-\infty<x<+\infty## for this case. (2) ##\underline{y < 0}## : ##-xy = x\Rightarrow \boxed{y = -1}\; (x \neq 0)##...
  50. chwala

    Find the value of x using the Lambert W function

    it really took me time to figure out as to how that equation in aterisk was arrived at...i just noted that both sides of the equation were multiplied by ##-\frac {1}{3}## any particular reason for that? what is the common thinking around that? can one multiply both sides by say ##\frac {1}{6}##...
Back
Top