Find the work done for the force ๐นโƒ—(x,y,z)= yz๐‘–โƒ— + xz ๐‘—โƒ— + (xy+2z) ๐‘˜โƒ—โƒ— along the line segment from (1,0,-2) to (4,6,3)

์กฐํšŒ ์ˆ˜: 78 (์ตœ๊ทผ 30์ผ)
Chaitanya Yadav
Chaitanya Yadav 2022๋…„ 1์›” 14์ผ
๋Œ“๊ธ€: JANICE 2023๋…„ 11์›” 28์ผ
Find the work done for the force ๐นโƒ—(x,y,z)= yz๐‘–โƒ— + xz ๐‘—โƒ— + (xy+2z) ๐‘˜โƒ—โƒ— along the line segment from (1,0,-2) to (4,6,3)
  ๋Œ“๊ธ€ ์ˆ˜: 5
Dinneharan Ravi Chamdran
Dinneharan Ravi Chamdran 2022๋…„ 6์›” 14์ผ
@Chaitanya Yadav can u share the link?
Torsten
Torsten 2022๋…„ 6์›” 14์ผ
Look at the accepted answer.

๋Œ“๊ธ€์„ ๋‹ฌ๋ ค๋ฉด ๋กœ๊ทธ์ธํ•˜์‹ญ์‹œ์˜ค.

์ฑ„ํƒ๋œ ๋‹ต๋ณ€

Torsten
Torsten 2022๋…„ 1์›” 14์ผ

์ถ”๊ฐ€ ๋‹ต๋ณ€ (1๊ฐœ)

Surya
Surya 2023๋…„ 11์›” 21์ผ
clc
clear all
syms x y z t
f=input('Enter the components of 3D vector function [u,v,w] ');
r=input('Enter x,y,z in parametric form');
I=input('Enter the limits of integration for t in the form [a,b]');
a=I(1);b=I(2);
dr=diff(r,t);
F=subs(f,{x,y,z},r);
Fdr=sum(F.*dr);
I=int(Fdr,t,a,b)
P(x,y,z)=f(1);Q(x,y,z)=f(2); R(x,y,z)=f(3);
x1=linspace(0,1,10); y1=x1; z1=x1;
[X,Y,Z] = meshgrid(x1,y1,z1);
U=P(X,Y,Z); V=Q(X,Y,Z); W=R(X,Y,Z);
quiver3(X,Y,Z,U,V,W,1.5)
hold on
t1=linspace(0,1,10);
x=subs(r(1),t1);y=subs(r(2),t1);z=subs(r(3),t1);
plot3(x,y,z,'r')
  ๋Œ“๊ธ€ ์ˆ˜: 2
Raghav
Raghav 2023๋…„ 11์›” 27์ผ
์ด๋™: DGM 2023๋…„ 11์›” 28์ผ
clear
clc
syms x y z t
f=[y*z,x*z,x*y+2*z];
r=[3*t+1,6*t,5*t-2];
I=[0,1];
a=I(1);b=I(2);
dr=diff(r,t);
F=subs(f,{x,y,z},r);
Fdr=sum(F.*dr);
I=int(Fdr,t,a,b)
P(x,y,z)=f(1);Q(x,y,z)=f(2); R(x,y,z)=f(3);
x1=linspace(0,1,10); y1=x1; z1=x1;
[X,Y,Z]=meshgrid(x1,y1,z1);
U=P(X,Y,Z); V=Q(X,Y,Z); W=R(X,Y,Z);
quiver3(X,Y,Z,U,V,W,1.5)
hold on
t1=linspace(0,1,10);
x=subs(r(1),t1);y=subs(r(2),t1);z=subs(r(3),t1);
plot3(x1,y1,z1,'r')
JANICE
JANICE 2023๋…„ 11์›” 28์ผ
dude how did you find the limits

๋Œ“๊ธ€์„ ๋‹ฌ๋ ค๋ฉด ๋กœ๊ทธ์ธํ•˜์‹ญ์‹œ์˜ค.

์นดํ…Œ๊ณ ๋ฆฌ

Help Center ๋ฐ File Exchange์—์„œ Get Started with MATLAB์— ๋Œ€ํ•ด ์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ

ํƒœ๊ทธ

์ œํ’ˆ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by