Recent posts
#11
Educational Resources / Zero Coding with Tau: Specifyi...
Last post by S1r_4zdr3w - Dec 21, 2024, 02:03 PMhttps://youtu.be/DW0Fm-YfBzs
This video demonstrates how to use the Tau Language REPL to create correct-by-construction software through AI program synthesis.
The video will showcase the Tau language's ability to automatically generate a program that meets given specifications.
o1[t]=0 states that the output o1 at all time points (t) has to be 0.
The video will highlight:
● The simplicity of specifying software behavior in the Tau language.
● Tau's use of logical AI for program synthesis.
● The guarantee of correctness provided by Tau's approach.
In my next video, I will go deeper into the topic. Thank you!
Questions, How big do you think is the effect of being able to do zero coding to just write our specifications and a very powerful logical AI will automatically generate a program that 100% meets our specifications?
This video demonstrates how to use the Tau Language REPL to create correct-by-construction software through AI program synthesis.
The video will showcase the Tau language's ability to automatically generate a program that meets given specifications.
o1[t]=0 states that the output o1 at all time points (t) has to be 0.
The video will highlight:
● The simplicity of specifying software behavior in the Tau language.
● Tau's use of logical AI for program synthesis.
● The guarantee of correctness provided by Tau's approach.
In my next video, I will go deeper into the topic. Thank you!
Questions, How big do you think is the effect of being able to do zero coding to just write our specifications and a very powerful logical AI will automatically generate a program that 100% meets our specifications?

#13
Educational Resources / Re: How to write in Tau Langua...
Last post by S1r_4zdr3w - Dec 18, 2024, 01:42 AMBasic Tutorial Series - Tau Lang REPL : Practice using Logical Connectives Complementation and Exclusive OR and its possible real life applications
https://www.youtube.com/watch?v=dvmy6LT3Idw
In this video, I will show you how to
1. Opening the demo for Tau Language Syntax
2. Practice: Logical Connective (Complementation: ' )
3. Practice: Logical Connective (Exclusive OR: + )
4. Real World Possible Application: Two Layer Safety Mechanism
https://www.youtube.com/watch?v=dvmy6LT3Idw
In this video, I will show you how to
1. Opening the demo for Tau Language Syntax
2. Practice: Logical Connective (Complementation: ' )
3. Practice: Logical Connective (Exclusive OR: + )
4. Real World Possible Application: Two Layer Safety Mechanism
#14
Tau Language / Re: Tau Language REPL Syntax
Last post by S1r_4zdr3w - Dec 15, 2024, 05:32 AMThanks pk!
I tried to compare windows OS Tau executable and Ubuntu Linux OS Tau build-Release.
Without declaring my input,
1. In the Tau executable, it ask me how many steps do I want to perform the program. Then it will run depending on the number of steps I gave.
2. In the Tau build-Release, it will run the program step by step. And it will only stop when I type q for quit.
What I think I learned:
1. In Tau executable, it will ask how many times I want to run the program. It's like more into execution. It will run the program in one go from start to finish.
2. In build-Release, it will not ask how many times I want to run the program. So I may test it by providing different scenarios to see the program's reaction. The program will run step-by-step and that's why I can just write "q" to quit the program.
I also tried your code recommendation of storing the results. Since I was running the code on the folder build-Release, that's where the .txt was saved. And yes, I can find all the results there. Thanks for the great info!
Here is my comparison of the two. In the build-Release, we need to save the output at .txt to see the result

http://youtube.com/post/UgkxkSJ6fL25NdUUwTqJOzJkRpDz-fCjReTf?si=mKQl5Qv0AWMpa-G3
I tried to compare windows OS Tau executable and Ubuntu Linux OS Tau build-Release.
Without declaring my input,
1. In the Tau executable, it ask me how many steps do I want to perform the program. Then it will run depending on the number of steps I gave.
2. In the Tau build-Release, it will run the program step by step. And it will only stop when I type q for quit.
What I think I learned:
1. In Tau executable, it will ask how many times I want to run the program. It's like more into execution. It will run the program in one go from start to finish.
2. In build-Release, it will not ask how many times I want to run the program. So I may test it by providing different scenarios to see the program's reaction. The program will run step-by-step and that's why I can just write "q" to quit the program.
I also tried your code recommendation of storing the results. Since I was running the code on the folder build-Release, that's where the .txt was saved. And yes, I can find all the results there. Thanks for the great info!
Here is my comparison of the two. In the build-Release, we need to save the output at .txt to see the result
http://youtube.com/post/UgkxkSJ6fL25NdUUwTqJOzJkRpDz-fCjReTf?si=mKQl5Qv0AWMpa-G3
#15
Tau Language / Re: Tau Language REPL Syntax
Last post by pk - Dec 14, 2024, 06:42 AMQuote from: S1r_4zdr3w on Dec 13, 2024, 10:17 AMQ1: is it possible to stop Tau from running? just curious.
For example I did the example o1[t] = 0, I run it and then Tau ask me, "no inputs vars defined, how many steps do you want to perform?" I put a large number for testing (10,000) and its not stopping till it reach that number, it's actually amazing to see it run. Is there a key I can type to stop it?
Q2: Also, does the result stored in my computer or if I entered cleared, it will remove everything?
Thanks!
A1: If you compile an up to date version from Github, there is a new mechanism of execution that goes through steps one by one. One can stop the execution by pressing q followed by enter, otherwise pressing the enter key on its own continues to the next step.
A2: If you declared your output variable, say o1, to the standard output i.e. 'sbf o1 = console' then it won't store the results.
But results can easily be stored in a text file by changing that output variable declaration into 'sbf o1 = ofile("my_output1.txt")' for instance.
One can also store the output in a different location by providing a full path like: 'sbf o1=("/tmp/tmp_tau1.out")' so the output from o1 goes to /tmp in this example, instead of the tau executable location.
#16
Tau Language / Re: Tau Language REPL Syntax
Last post by S1r_4zdr3w - Dec 13, 2024, 10:17 AMHi Lucca,
Thank you for your response. A follow up question.
Q1: is it possible to stop Tau from running? just curious.
For example I did the example o1[t] = 0, I run it and then Tau ask me, "no inputs vars defined, how many steps do you want to perform?" I put a large number for testing (10,000) and its not stopping till it reach that number, it's actually amazing to see it run. Is there a key I can type to stop it?
Q2: Also, does the result stored in my computer or if I entered cleared, it will remove everything?
Thanks!
Thank you for your response. A follow up question.
Q1: is it possible to stop Tau from running? just curious.
For example I did the example o1[t] = 0, I run it and then Tau ask me, "no inputs vars defined, how many steps do you want to perform?" I put a large number for testing (10,000) and its not stopping till it reach that number, it's actually amazing to see it run. Is there a key I can type to stop it?
Q2: Also, does the result stored in my computer or if I entered cleared, it will remove everything?
Thanks!
#17
Tau Language / Re: Tau Language REPL Syntax
Last post by Lucca Tiemens - Dec 10, 2024, 02:21 PMHi S1r_4zdr3w,
your conclusion is correct. The first one is a Boolean function which is passed to the normalizer while the second one is a Tau formula.
Best,
Lucca
your conclusion is correct. The first one is a Boolean function which is passed to the normalizer while the second one is a Tau formula.
Best,
Lucca
#18
Agoras General Discussion / Tau Live: A Freestyle Knowledg...
Last post by S1r_4zdr3w - Dec 10, 2024, 11:11 AMTau Live is a platform designed for real-time knowledge sharing through video calls.
https://tau.net/tau-live/
The Provisional Patent "A Method and System for Arbitrary Attestation to Anonymous Internet Users." will boost people's trust in the platform as well as those that offer their knowledge as they are certified by a trusted certifying entity.
https://drive.google.com/file/d/1F54OzMIcDQGE5cpP9gWy1WcLb0S_jVXl/view?usp=sharing
https://www.youtube.com/watch?v=ykVUja8m8JE&list=PLeBSjZu0y6vXmFwoi1BH7uwb2w_642aKW&index=29
Tau Live Platform Playlist
https://www.youtube.com/watch?v=3bu3a14eAis&list=PLeBSjZu0y6vXtMoX8IiZSGTum6dYejWaK
My question is what happens if a session is interrupted due to technical issues? How will the micropayment system handle such disruptions fairly?
https://tau.net/tau-live/
The Provisional Patent "A Method and System for Arbitrary Attestation to Anonymous Internet Users." will boost people's trust in the platform as well as those that offer their knowledge as they are certified by a trusted certifying entity.
https://drive.google.com/file/d/1F54OzMIcDQGE5cpP9gWy1WcLb0S_jVXl/view?usp=sharing
https://www.youtube.com/watch?v=ykVUja8m8JE&list=PLeBSjZu0y6vXmFwoi1BH7uwb2w_642aKW&index=29
Tau Live Platform Playlist
https://www.youtube.com/watch?v=3bu3a14eAis&list=PLeBSjZu0y6vXtMoX8IiZSGTum6dYejWaK
My question is what happens if a session is interrupted due to technical issues? How will the micropayment system handle such disruptions fairly?
#19
Tau Language / Re: Tau Language REPL Syntax
Last post by S1r_4zdr3w - Dec 10, 2024, 10:31 AMTau Formula:
tau => "(" tau "&&" tau ")" | "!" tau | "(" tau "^" tau ")" | "(" tau "||" tau ")"
| "(" tau "->" tau ")" | "(" tau "<->" tau ")" | "(" tau "?" tau ":" tau ")"
| "(" term "=" term ")" | "(" term "!=" term ")" | "("term "<" term")"
| "("term "!<" term")" | "(" term "<=" term ")" | "(" term "!<=" term ")"
| "(" term ">" term ")" | "(" term "!>" term ")" | "all" var tau
| "ex" var tau | tau_ref | T | F.
Boolean Functions:
term => "("term "&" term")" | term "'" | "("term "+" term")" | "("term "|" term")"
| term_ref | constant | uninterpreted_constant | var | "0" | "1".
So this explains why the first formula gives 1 while the 2nd formula gives T. This is because Tau sees the 1st formula to be a Boolean Function while the 2nd formula to be Tau Formula.
tau => "(" tau "&&" tau ")" | "!" tau | "(" tau "^" tau ")" | "(" tau "||" tau ")"
| "(" tau "->" tau ")" | "(" tau "<->" tau ")" | "(" tau "?" tau ":" tau ")"
| "(" term "=" term ")" | "(" term "!=" term ")" | "("term "<" term")"
| "("term "!<" term")" | "(" term "<=" term ")" | "(" term "!<=" term ")"
| "(" term ">" term ")" | "(" term "!>" term ")" | "all" var tau
| "ex" var tau | tau_ref | T | F.
Boolean Functions:
term => "("term "&" term")" | term "'" | "("term "+" term")" | "("term "|" term")"
| term_ref | constant | uninterpreted_constant | var | "0" | "1".
So this explains why the first formula gives 1 while the 2nd formula gives T. This is because Tau sees the 1st formula to be a Boolean Function while the 2nd formula to be Tau Formula.
#20
Educational Resources / Re: How to write in Tau Langua...
Last post by S1r_4zdr3w - Dec 10, 2024, 10:25 AMBasic Tutorial Series - Tau Lang REPL : Practice using Logical Connectives AND and OR and its possible real life applications
https://www.youtube.com/watch?v=qvtrRnX0438
In this video, I will show you how to
1. practice using both AND and OR logical function in a single formula
2. Analyze the result using the Truth Table
3. Giving Real life very simple practical application of logic (Getting a Job Offer)
https://www.youtube.com/watch?v=qvtrRnX0438
In this video, I will show you how to
1. practice using both AND and OR logical function in a single formula
2. Analyze the result using the Truth Table
3. Giving Real life very simple practical application of logic (Getting a Job Offer)