Taking derivative and putting it equal to 0 to find theta.
4 次查看(过去 30 天)
显示 更早的评论
S = (6*s*h) - ((3*s*s*cot(x))/2) + ((3*s*s*sqrt(3)*csc(x))/2)
This is the equation of surface area of a beehive. I have to take first derivative and put it equal to 0 to find the theta i.e x. Could someone help me with this.
0 个评论
回答(2 个)
VBBV
2022-12-1
syms x s h
S = (6*s*h) - ((3*s*s*cot(x))/2) + ((3*s*s*sqrt(3)*csc(x))/2)
Y = diff(S,x) == 0 % take derivative of equation w.r.t x
sol = solve(Y,x) % find x (theta)
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!