About 1,860,111 results (2,589 milliseconds)

What happens, at a high level, when you factor this expression?

https://groups.google.com/g/sympy/c/4Pt1V322RHw
Jun 24, 2011 ... In [1]: diff(sin(x), x). Out[1]: cos(x). In [2]: Derivative(sin(x), x) ... We don't know what is the derivative of f, so we have to somehow ...

Adjoint Method

https://groups.google.com/g/openvsp/c/H-KREF9eADo
((sin(y) * -(sin(x))) + -((1 / x))) (cos(x) * cos(y)) (-(sin((x / y))) * (1 ... Do steps 1-3 and instead of using the FastDifferentiation differentiation ...

How to write a macro that can substitute variable values into an ...

https://groups.google.com/g/julia-users/c/rUGIzZL6h2k
Feb 1, 2014 ... ... x, y, and z. Then the marginal effects at the mean are computed like this: First, compute the first derivative of 1+ x + z + sin(x) * sin(z).

Mathematical functions | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions
For more information, see Differential privacy functions. CBRT, Computes ... Computes the inverse hyperbolic sine of X. Doesn't fail. X, ASINH(X). +inf, + ...

Newbie question regarding Interfacing with Automatic Differentiation

https://groups.google.com/g/ceres-solver/c/Kxguz_3EDn4
Apr 12, 2021 ... const T q_1 = -sin(theta[0]) * x[0] + cos(theta[0]) * x[1] + t[ ... x[1] = x_in[1]; y[0] = y_in[0]; y[1] = y_in[1]; compute_distortion ...

MatrixSymbol and diff function

https://groups.google.com/g/sympy/c/wpmhMPuS8wE
Aug 22, 2013 ... ... differentiation is not possible. Such a method could then ... >>>> (2*sqrt(1 - sin(x)**2)).diff(cos(x)) > Derivative(2*sqrt(-sin(x)** ...

Google Code Archive - Google Code

https://code.google.com/archive/p/sympy/wikis/Examples.wiki
... x^6+1/2*x^2+5/24*x^4+277/8064*x^8 e=1/sympy.sin(x) print e.series(x,4) x^(-1)+1/36*x^3+1/216*x^5+1/6*x ```. Substitution. ``` import sympy x=sympy.Symbol('x ...

Differential Equations Package

https://groups.google.com/g/julia-users/c/QMjL1EaKnpQ/m/YFQw9i3dQAAJ
Example problem with solution: ``u(x,y)= sin(2π.*x).*cos(2π.*y)/(8π*π)``" function poissonProblemExample_wave() f(x) = sin(2π.*x[:,1]).*cos(2π.

Evaluating expressions in a local scope

https://groups.google.com/g/julia-dev/c/iqaP3hXmNMM
Mar 18, 2012 ... for i=1:n x = sin(x*x) end the derivative of the RHS expression in the assignment can be computed symbolically to be cos(x*x)*2*x*x' and the ...

integration-answers-15-30.ipynb - Colab

https://colab.research.google.com/github/subblue/applying-maths-book/blob/main/applying_maths_book/chapter-4/integration-answers-15-30.ipynb
For example, let $y = \sin^{-1}(x/a)$$y = \sin^{-1}(x/a)$ which is the same ... When $x = \infty$$x = \infty$, repeated differentiation using l'Hopital's rule ...

3.Real Analysis.ipynb - Colab

https://colab.research.google.com/github/klavins/EE502P/blob/master/3.Real%20Analysis.ipynb
$x$, $1/x$, $\sin(1/x)$; Combinations of functions (sum, multiple, produce, quotient, composition, inverses); $\sin$, $\cos$ (not proven to save time) ...

Automatic Vs Symbolic Differentiation: Casadi vs matlab's symbolic ...

https://groups.google.com/g/casadi-users/c/1mRXfV6G150/m/RYANEkWzCAAJ
Worse, if you computed it for, say, x=1.2, you'd be computing sin(sin...(x)) ... Besides, k>0 can easily be softened (example: x/(1+abs(x)); but I never find the ...

Reviews - Basic Calculus

https://sites.google.com/view/math165/reviews
Derivatives of x^k, e^x, sin(x), cos(x), tan(x), sec(x). Differentiation and ... Implicit differentiation; derivative of inverse function. Derivatives of ...

Bug in abs(I*x).diff(x)

https://groups.google.com/g/sage-devel/c/6j-LcC6tpkE
> Wirtinger derivative is x/abs(x). > Sorry, I should have written that the Wirtinger derivative of abs(x) is 1/2 conjugate(x)/ ...

Cosecant, cotangent, secant...

https://groups.google.com/g/comp.sys.hp48/c/5XGzwQIfuCc
'SEC(X)' 'X' RAD [derivative] --> 'SIN(X)/COS(X)^2'. > Like to use for ... << SIN 1/X >> << COS 1/X >> << TAN 1/X >>. This won't actually help you if ...

User-defined functions

https://groups.google.com/g/casadi-users/c/zvy3FjcB8Lo/m/gOUZrcWlAQAJ
May 12, 2017 ... nlp2 = {'x':x,'f':-sin(x[0])} solver2 = nlpsol('solver',"ipopt",nlp2) ... x),'g':x[1]}. with e.g.. arg['lbg'] = 1 arg['ubg'] = 1. Then ...

Fast higher order differentiation

https://groups.google.com/g/julia-users/c/RxDL0l9Ocx4
1.0 t + O(t⁴¹). julia> f(x) = sin(exp(x)). f (generic function with 1 method). julia> f(t). 0.8414709848078965 + 0.5403023058681398 t - 0.15058433946987837 t² ...

MathICS: A free, light-weight (online) alternative to Mathematica with ...

https://groups.google.com/g/sage-devel/c/cjrsZfGkc-w
... 1/2*sin(x + 1)*sin(x) Time: CPU 0.53 s, Wall: 0.53 s. I do realize sympy is ... arithmetic, differentiation, some integration. I think your pattern ...

We need some community input on the desired behavior of an ...

https://groups.google.com/g/sympy/c/rSi_I42i35I
Jan 7, 2021 ... diff(f,x). 1. Why 1? I think I would have expected it to generate a ... cos(x).subs(cos,sin). sin(x). SymPy does not guarantee that this is ...