answersLogoWhite

0

state function did not depend on the path , it depends on the initial and final point of the system where as path function depends on the path of the reaction.

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

RossRoss
Every question is just a happy little opportunity.
Chat with Ross
DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin
SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve

Add your answer:

Earn +20 pts
Q: What is the difference between path function and state function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the difference between polar plot and nyquist plot?

it is a path in which magnitude and phase can be determine . it is used to determine the


Difference between deterministic and nondeterministic algorithm in design and analysis of algorithm?

Algorithm is deterministic if for a given input the output generated is same for a function. A mathematical function is deterministic. Hence the state is known at every step of the algorithm.Algorithm is non deterministic if there are more than one path the algorithm can take. Due to this, one cannot determine the next state of the machine running the algorithm. Example would be a random function.FYI,Non deterministic machines that can't solve problems in polynomial time are NP. Hence finding a solution to an NP problem is hard but verifying it can be done in polynomial time. Hope this helps.Pl correct me if I am wrong here.Thank you.Sharada


Difference between pick and place robot and continuous path robot?

I'm not specialist in robotics but rationally thinking person. for me main difference is that pick and place robots must at least have inteligence to pick randomly placed objects and computation where this objects to be set.br shiva


What is the difference between the channel spacing and the transmission bandwidth?

Bandwidth is the measure of range or band of frequencies that a channel or path can handle at a maximum rate. whereas, throughput is the average rate of successful message delivery over a communication channel. and Goodput is simply the changing in throughput rate.


What is a short note on linking error in c plus plus?

A linking error usually denotes some inconsistency between a function's declaration and its definition, typically meaning there is no matching definition for the declared function (an undefined function). Normally this is only a problem if the function is actually called since unused functions are of no concern to the linker, whether defined or not. Linker errors may not relate to errors within your code. An undefined function could simply be the result of not providing the linker with the full path to a function that is implemented in a library. The linker also needs access to all the object files generated by the compiler. If the linker options are correct then the problem is most likely that you've failed to define a declared function.