Y = 2*10^11;
Iyy = 8.333*10^-6;
L = 4;
ζ = L/2;
K = 100*(Y*Iyy)/L^3;
a = (2*β^3*Sin[β*L]*Sinh[β*L]);
(*This is my main equation*)
eq1 =
(1 - K/(Y*Iyy) *
((Sin[β*(L - ζ)]*Sin[β*ζ]*Sinh[β*L] - Sinh[β*(L - ζ)]*Sinh[β*ζ]* Sin[β*L])*1/a));
P = FullSimplify[eq1];
T = P;,
Plot[T, {β, -10, 10}]
S = FindRoot[T == 0, {β, 3}] (* finding the root at 3*)
β /. % (* printing that value*)
I first plotted that equation and later, wherever it crosses the x-axis, in that neighborhood I was trying to find the root. I used FindRoot command. This program is about finding the root of the equation P.
FindRoot[eq1 == 0, {\[Beta], 3, 3, 4}]– Michael E2 Aug 29 '17 at 11:07PlotRangeto include0and raise thePlotPointsto over1000. – Michael E2 Aug 29 '17 at 17:28Plooks like withPlot[Evaluate @ P, {β, -10, 10}, PlotRange -> 1.2]. It looks like it has many singularities and roots near -2 and 2.FindRoot[P == 0, {β, 2}]returns{β -> 2.34143}– m_goldberg Aug 30 '17 at 03:40