📜 [專欄新文章] Uniswap v3 Features Explained in Depth
✍️ 田少谷 Shao
📥 歡迎投稿: https://medium.com/taipei-ethereum-meetup #徵技術分享文 #使用心得 #教學文 #medium
Once again the game-changing DEX 🦄 👑
Image source: https://uniswap.org/blog/uniswap-v3/
Outline
0. Intro1. Uniswap & AMM recap2. Ticks 3. Concentrated liquidity4. Range orders: reversible limit orders5. Impacts of v36. Conclusion
0. Intro
The announcement of Uniswap v3 is no doubt one of the most exciting news in the DeFi place recently 🔥🔥🔥
While most have talked about the impact v3 can potentially bring on the market, seldom explain the delicate implementation techniques to realize all those amazing features, such as concentrated liquidity, limit-order-like range orders, etc.
Since I’ve covered Uniswap v1 & v2 (if you happen to know Mandarin, here are v1 & v2), there’s no reason for me to not cover v3 as well ✅
Thus, this article aims to guide readers through Uniswap v3, based on their official whitepaper and examples made on the announcement page. However, one needs not to be an engineer, as not many codes are involved, nor a math major, as the math involved is definitely taught in your high school, to fully understand the following content 😊😊😊
If you really make it through but still don’t get shxt, feedbacks are welcomed! 🙏
There should be another article focusing on the codebase, so stay tuned and let’s get started with some background noise!
1. Uniswap & AMM recap
Before diving in, we have to first recap the uniqueness of Uniswap and compare it to traditional order book exchanges.
Uniswap v1 & v2 are a kind of AMMs (automated market marker) that follow the constant product equation x * y = k, with x & y stand for the amount of two tokens X and Y in a pool and k as a constant.
Comparing to order book exchanges, AMMs, such as the previous versions of Uniswap, offer quite a distinct user experience:
AMMs have pricing functions that offer the price for the two tokens, which make their users always price takers, while users of order book exchanges can be both makers or takers.
Uniswap as well as most AMMs have infinite liquidity¹, while order book exchanges don’t. The liquidity of Uniswap v1 & v2 is provided throughout the price range [0,∞]².
Uniswap as well as most AMMs have price slippage³ and it’s due to the pricing function, while there isn’t always price slippage on order book exchanges as long as an order is fulfilled within one tick.
In an order book, each price (whether in green or red) is a tick. Image source: https://ftx.com/trade/BTC-PERP
¹ though the price gets worse over time; AMM of constant sum such as mStable does not have infinite liquidity
² the range is in fact [-∞,∞], while a price in most cases won’t be negative
³ AMM of constant sum does not have price slippage
2. Tick
The whole innovation of Uniswap v3 starts from ticks.
For those unfamiliar with what is a tick:
Source: https://www.investopedia.com/terms/t/tick.asp
By slicing the price range [0,∞] into numerous granular ticks, trading on v3 is highly similar to trading on order book exchanges, with only three differences:
The price range of each tick is predefined by the system instead of being proposed by users.
Trades that happen within a tick still follows the pricing function of the AMM, while the equation has to be updated once the price crosses the tick.
Orders can be executed with any price within the price range, instead of being fulfilled at the same one price on order book exchanges.
With the tick design, Uniswap v3 possesses most of the merits of both AMM and an order book exchange! 💯💯💯
So, how is the price range of a tick decided?
This question is actually somewhat related to the tick explanation above: the minimum tick size for stocks trading above 1$ is one cent.
The underlying meaning of a tick size traditionally being one cent is that one cent (1% of 1$) is the basis point of price changes between ticks, ex: 1.02 — 1.01 = 0.1.
Uniswap v3 employs a similar idea: compared to the previous/next price, the price change should always be 0.01% = 1 basis point.
However, notice the difference is that in the traditional basis point, the price change is defined with subtraction, while here in Uniswap it’s division.
This is how price ranges of ticks are decided⁴:
Image source: https://uniswap.org/whitepaper-v3.pdf
With the above equation, the tick/price range can be recorded in the index form [i, i+1], instead of some crazy numbers such as 1.0001¹⁰⁰ = 1.0100496621.
As each price is the multiplication of 1.0001 of the previous price, the price change is always 1.0001 — 1 = 0.0001 = 0.01%.
For example, when i=1, p(1) = 1.0001; when i=2, p(2) = 1.00020001.
p(2) / p(1) = 1.00020001 / 1.0001 = 1.0001
See the connection between the traditional basis point 1 cent (=1% of 1$) and Uniswap v3’s basis point 0.01%?
Image source: https://tenor.com/view/coin-master-cool-gif-19748052
But sir, are prices really granular enough? There are many shitcoins with prices less than 0.000001$. Will such prices be covered as well?
Price range: max & min
To know if an extremely small price is covered or not, we have to figure out the max & min price range of v3 by looking into the spec: there is a int24 tick state variable in UniswapV3Pool.sol.
Image source: https://uniswap.org/whitepaper-v3.pdf
The reason for a signed integer int instead of an uint is that negative power represents prices less than 1 but greater than 0.
24 bits can cover the range between 1.0001 ^ (2²³ — 1) and 1.0001 ^ -(2)²³. Even Google cannot calculate such numbers, so allow me to offer smaller values to have a rough idea of the whole price range:
1.0001 ^ (2¹⁸) = 242,214,459,604.341
1.0001 ^ -(2¹⁷) = 0.000002031888943
I think it’s safe to say that with a int24 the range can cover > 99.99% of the prices of all assets in the universe 👌
⁴ For implementation concern, however, a square root is added to both sides of the equation.
How about finding out which tick does a price belong to?
Tick index from price
The answer to this question is rather easy, as we know that p(i) = 1.0001^i, simply takes a log with base 1.0001 on both sides of the equation⁴:
Image source: https://www.codecogs.com/latex/eqneditor.php
Let’s try this out, say we wanna find out the tick index of 1000000.
Image source: https://ncalculators.com/number-conversion/log-logarithm-calculator.htm
Now, 1.0001¹³⁸¹⁶² = 999,998.678087146. Voila!
⁵ This formula is also slightly modified to fit the real implementation usage.
3. Concentrated liquidity
Now that we know how ticks and price ranges are decided, let’s talk about how orders are executed in a tick, what is concentrated liquidity and how it enables v3 to compete with stablecoin-specialized DEXs (decentralized exchange), such as Curve, by improving the capital efficiency.
Concentrated liquidity means LPs (liquidity providers) can provide liquidity to any price range/tick at their wish, which causes the liquidity to be imbalanced in ticks.
As each tick has a different liquidity depth, the corresponding pricing function x * y = k also won’t be the same!
Each tick has its own liquidity depth. Image source: https://uniswap.org/blog/uniswap-v3/
Mmm… examples are always helpful for abstract descriptions 😂
Say the original pricing function is 100(x) * 1000(y) = 100000(k), with the price of X token 1000 / 100 = 10 and we’re now in the price range [9.08, 11.08].
If the liquidity of the price range [11.08, 13.08] is the same as [9.08, 11.08], we don’t have to modify the pricing function if the price goes from 10 to 11.08, which is the boundary between two ticks.
The price of X is 1052.63 / 95 = 11.08 when the equation is 1052.63 * 95 = 100000.
However, if the liquidity of the price range [11.08, 13.08] is two times that of the current range [9.08, 11.08], balances of x and y should be doubled, which makes the equation become 2105.26 * 220 = 400000, which is (1052.63 * 2) * (110 * 2) = (100000 * 2 * 2).
We can observe the following two points from the above example:
Trades always follow the pricing function x * y = k, while once the price crosses the current price range/tick, the liquidity/equation has to be updated.
√(x * y) = √k = L is how we represent the liquidity, as I say the liquidity of x * y = 400000 is two times the liquidity of x * y = 100000, as √(400000 / 100000) = 2.
What’s more, compared to liquidity on v1 & v2 is always spread across [0,∞], liquidity on v3 can be concentrated within certain price ranges and thus results in higher capital efficiency from traders’ swapping fees!
Let’s say if I provide liquidity in the range [1200, 2800], the capital efficiency will then be 4.24x higher than v2 with the range [0,∞] 😮😮😮 There’s a capital efficiency comparison calculator, make sure to try it out!
Image source: https://uniswap.org/blog/uniswap-v3/
It’s worth noticing that the concept of concentrated liquidity was proposed and already implemented by Kyper, prior to Uniswap, which is called Automated Price Reserve in their case.⁵
⁶ Thanks to Yenwen Feng for the information.
4. Range orders: reversible limit orders
As explained in the above section, LPs of v3 can provide liquidity to any price range/tick at their wish. Depending on the current price and the targeted price range, there are three scenarios:
current price < the targeted price range
current price > the targeted price range
current price belongs to the targeted price range
The first two scenarios are called range orders. They have unique characteristics and are essentially fee-earning reversible limit orders, which will be explained later.
The last case is the exact same liquidity providing mechanism as the previous versions: LPs provide liquidity in both tokens of the same value (= amount * price).
There’s also an identical product to the case: grid trading, a very powerful investment tool for a time of consolidation. Dunno what’s grid trading? Check out Binance’s explanation on this, as this topic won’t be covered!
In fact, LPs of Uniswap v1 & v2 are grid trading with a range of [0,∞] and the entry price as the baseline.
Range orders
To understand range orders, we’d have to first revisit how price is discovered on Uniswap with the equation x * y = k, for x & y stand for the amount of two tokens X and Y and k as a constant.
The price of X compared to Y is y / x, which means how many Y one can get for 1 unit of X, and vice versa the price of Y compared to X is x / y.
For the price of X to go up, y has to increase and x decrease.
With this pricing mechanism in mind, it’s example time!
Say an LP plans to place liquidity in the price range [15.625, 17.313], higher than the current price of X 10, when 100(x) * 1000(y) = 100000(k).
The price of X is 1250 / 80 = 15.625 when the equation is 80 * 1250 = 100000.
The price of X is 1315.789 / 76 = 17.313 when the equation is 76 * 1315.789 = 100000.
If now the price of X reaches 15.625, the only way for the price of X to go even higher is to further increase y and decrease x, which means exchanging a certain amount of X for Y.
Thus, to provide liquidity in the range [15.625, 17.313], an LP needs only to prepare 80 — 76 = 4 of X. If the price exceeds 17.313, all 4 X of the LP is swapped into 1315.789 — 1250 = 65.798 Y, and then the LP has nothing more to do with the pool, as his/her liquidity is drained.
What if the price stays in the range? It’s exactly what LPs would love to see, as they can earn swapping fees for all transactions in the range! Also, the balance of X will swing between [76, 80] and the balance of Y between [1250, 1315.789].
This might not be obvious, but the example above shows an interesting insight: if the liquidity of one token is provided, only when the token becomes more valuable will it be exchanged for the less valuable one.
…wut? 🤔
Remember that if 4 X is provided within [15.625, 17.313], only when the price of X goes up from 15.625 to 17.313 is 4 X gradually swapped into Y, the less valuable one!
What if the price of X drops back immediately after reaching 17.313? As X becomes less valuable, others are going to exchange Y for X.
The below image illustrates the scenario of DAI/USDC pair with a price range of [1.001, 1.002] well: the pool is always composed entirely of one token on both sides of the tick, while in the middle 1.001499⁶ is of both tokens.
Image source: https://uniswap.org/blog/uniswap-v3/
Similarly, to provide liquidity in a price range < current price, an LP has to prepare a certain amount of Y for others to exchange Y for X within the range.
To wrap up such an interesting feature, we know that:
Only one token is required for range orders.
Only when the current price is within the range of the range order can LP earn trading fees. This is the main reason why most people believe LPs of v3 have to monitor the price more actively to maximize their income, which also means that LPs of v3 have become arbitrageurs 🤯
I will be discussing more the impacts of v3 in 5. Impacts of v3.
⁷ 1.001499988 = √(1.0001 * 1.0002) is the geometric mean of 1.0001 and 1.0002. The implication is that the geometric mean of two prices is the average execution price within the range of the two prices.
Reversible limit orders
As the example in the last section demonstrates, if there is 4 X in range [15.625, 17.313], the 4 X will be completely converted into 65.798 Y when the price goes over 17.313.
We all know that a price can stay in a wide range such as [10, 11] for quite some time, while it’s unlikely so in a narrow range such as [15.625, 15.626].
Thus, if an LP provides liquidity in [15.625, 15.626], we can expect that once the price of X goes over 15.625 and immediately also 15.626, and does not drop back, all X are then forever converted into Y.
The concept of having a targeted price and the order will be executed after the price is crossed is exactly the concept of limit orders! The only difference is that if the range of a range order is not narrow enough, it’s highly possible that the conversion of tokens will be reverted once the price falls back to the range.
As price ranges follow the equation p(i) = 1.0001 ^ i, the range can be quite narrow and a range order can thus effectively serve as a limit order:
When i = 27490, 1.0001²⁷⁴⁹⁰ = 15.6248.⁸
When i = 27491, 1.0001²⁷⁴⁹¹ = 15.6264.⁸
A range of 0.0016 is not THAT narrow but can certainly satisfy most limit order use cases!
⁸ As mentioned previously in note #4, there is a square root in the equation of the price and index, thus the numbers here are for explantion only.
5. Impacts of v3
Higher capital efficiency, LPs become arbitrageurs… as v3 has made tons of radical changes, I’d like to summarize my personal takes of the impacts of v3:
Higher capital efficiency makes one of the most frequently considered indices in DeFi: TVL, total value locked, becomes less meaningful, as 1$ on Uniswap v3 might have the same effect as 100$ or even 2000$ on v2.
The ease of spot exchanging between spot exchanges used to be a huge advantage of spot markets over derivative markets. As LPs will take up the role of arbitrageurs and arbitraging is more likely to happen on v3 itself other than between DEXs, this gap is narrowed … to what extent? No idea though.
LP strategies and the aggregation of NFT of Uniswap v3 liquidity token are becoming the blue ocean for new DeFi startups: see Visor and Lixir. In fact, this might be the turning point for both DeFi and NFT: the two main reasons of blockchain going mainstream now come to the alignment of interest: solving the $$ problem 😏😏😏
In the right venue, which means a place where transaction fees are low enough, such as Optimism, we might see Algo trading firms coming in to share the market of designing LP strategies on Uniswap v3, as I believe Algo trading is way stronger than on-chain strategies or DAO voting to add liquidity that sort of thing.
After reading this article by Parsec.finance: The Dex to Rule Them All, I cannot help but wonder: maybe there is going to be centralized crypto exchanges adopting v3’s approach. The reason is that since orders of LPs in the same tick are executed pro-rata, the endless front-running speeding-competition issue in the Algo trading world, to some degree, is… solved? 🤔
Anyway, personal opinions can be biased and seriously wrong 🙈 I’m merely throwing out a sprat to catch a whale. Having a different voice? Leave your comment down below!
6. Conclusion
That was kinda tough, isn’t it? Glad you make it through here 🥂🥂🥂
There are actually many more details and also a huge section of Oracle yet to be covered. However, since this article is more about features and targeting normal DeFi users, I’ll leave those to the next one; hope there is one 😅
If you have any doubt or find any mistake, please feel free to reach out to me and I’d try to reply AFAP!
Stay tuned and in the meantime let’s wait and see how Uniswap v3 is again pioneering the innovation of DeFi 🌟
Uniswap v3 Features Explained in Depth was originally published in Taipei Ethereum Meetup on Medium, where people are continuing the conversation by highlighting and responding to this story.
👏 歡迎轉載分享鼓掌
同時也有215部Youtube影片,追蹤數超過39萬的網紅May Fit,也在其Youtube影片中提到,哈囉,大家好,我是May,為了幫助大家在新的一年建立正確飲食觀念,特別製作這支談話性影片, 尤其對於剛踏入健身的你/妳非常重要,這集影片主要分為六個主題講解: 1.TDEE為何?0:40 2.如何得知自己的TDEE? 1:49 3.如何根據自己的目標設定熱量? 4:26 4.如何分配自己的營養素? ...
「limit calculator」的推薦目錄:
- 關於limit calculator 在 Taipei Ethereum Meetup Facebook 的最佳解答
- 關於limit calculator 在 KampungboyCitygal - 乡下男孩城市女孩 Facebook 的最佳解答
- 關於limit calculator 在 Herman Yeung Facebook 的最佳貼文
- 關於limit calculator 在 May Fit Youtube 的精選貼文
- 關於limit calculator 在 Herman Yeung Youtube 的最佳貼文
- 關於limit calculator 在 Herman Yeung Youtube 的精選貼文
- 關於limit calculator 在 Limits Calculator Technique - YouTube 的評價
- 關於limit calculator 在 slz37/Limit-Calculator: Takes in a function and limit ... - GitHub 的評價
- 關於limit calculator 在 Limits Calculator Technique | By EngineerProf PH | Facebook 的評價
- 關於limit calculator 在 MikroTik Burst Limit Calculator - Buananetpbun - GitHub Pages 的評價
limit calculator 在 KampungboyCitygal - 乡下男孩城市女孩 Facebook 的最佳解答
If I have 30G of data, I can surf the net, play games, chat with friends, watch videos, do my readings without worrying about my data limit. U Mobile Hero Postpaid P98 plan offers the best value as compared to the other telco brands. You don't need a calculator to compute that. Refer to http://www.u.com.my/postpaid
limit calculator 在 Herman Yeung Facebook 的最佳貼文
Calculus 微積分系列,拍左5日,共110條片,約7小時15分鐘
有讀 M1, M2、想讀 M1, M2、無讀 M1, M2 都啱睇
由最 basic (中三的 level) 教到 pure maths 的 level,
現大致已有以下內容︰
(1) Concept of Differentiation 微分概念
(2) First Principle 基本原理
(3) Rule development 法則證明
(4) Trigonometric skills 三角學技術
(5) Limit 極限
(6) Sandwiches Theorem 迫近定理
(7) Leibniz Theorem 萊布尼茲定理
(8) Logarithmic differentiation 對數求導法
(9) Implicit differentiation 隱函數微分
(10) Differentiation of more than 2 variables 超過2個變數之微分
(11) Differentiation by Calculator 微分計數機功能
(12) Meaning of Integration 積分意義
(13) Rule of Integration 積分法則
(14) Trigonometric rule of Integration 三角積分法則
(15) Exponential, Logarithmic rule of integration 指數、對數積分法則
(16) Integration by Substitution 代換積分法
(17) Integration by Part 分部積分法
(18) Integration Skill : Partial Fraction 積分技術︰部分分式
(19) Integration by Trigonometric Substitution 三角代換積分法
(20) t-formula
(21) Limit + Summation = Integration 極限 + 連加 = 積分
(22) Application of Integration – Length of curve 積分應用之求曲線長度
(23) Application of Integration – Surface area 積分應用之求表面積
(24) L’ Hospital rule 洛必達定理
之後不斷 updated,大家密切留意
https://www.youtube.com/playlist…
limit calculator 在 May Fit Youtube 的精選貼文
哈囉,大家好,我是May,為了幫助大家在新的一年建立正確飲食觀念,特別製作這支談話性影片,
尤其對於剛踏入健身的你/妳非常重要,這集影片主要分為六個主題講解:
1.TDEE為何?0:40
2.如何得知自己的TDEE? 1:49
3.如何根據自己的目標設定熱量? 4:26
4.如何分配自己的營養素? 5:06
5.實際上如何應用?8:04
6.大部分人容易犯的錯 8:45
書籍參考:
去去脂肪走:減肥博士教你用科學方法遠離肥胖地獄
肌力與體能訓練Essentials of Strength Training and Conditioning
.
免費的TDEE計算公式連結 :
https://www.freedieting.com/calorie-calculator
(來自我目前上的國外線上營養學課程,請勿拿去做商業用途)
.
更多女性健身好文(由物理治療師、營養師、健身教練撰寫)
▶https://www.mayyoufit.com/pages/womenfitness-article-list
.
相關人氣觀念影片:
May教你如何正確減脂(10分鐘精華版) ▶https://youtu.be/OEBbNCh73u4
我如何吃美食又能維持精實身材?一週飲食記錄+tips分享▶https://youtu.be/SBfLENROnoQ
體重上升10kg的心態調適 | May有些話想和妳們說😌 ▶ https://youtu.be/2troFzIursI
May教妳如何增肌💪🏻(10分鐘精華版) 訓練&飲食安排 | 能不能同時增肌減脂?▶ ▶https://youtu.be/fC7Tmv4AjW4
*此影片無商業合作
Edited by May
May Fit instagram ▶ https://www.instagram.com/may8572fit/
May Fit居家訓練 ▶ https://www.youtube.com/playlist?list=PLol39BuP8rM-6l2PNZqXFETC6oCkjnXoi
.
#mayfitbowl 50篇免費健康食譜(附營養素)
▶https://www.mayyoufit.com/pages/mayfitbowl
你/妳可以用以下方式支持May Fit ⏬
耐用止滑翹臀圈推薦Teamjoined (折扣碼may8572fit) https://www.teamjoined.com.tw/categories/gears?page=2&sort_by=&order_by=&limit=24
天然美味即食雞胸康福先生 (折扣碼mayfit)
https://www.kindfoodtw.com/
自創品牌May You Fit周邊產品
https://www.mayyoufit.com/pages/may-u-fit-collection
.
✔️May力體態系統化居家進階課表&八週翹臀養成計畫 下載女力健身App(七天免費試用) https://com.nuli.app/may
✔️MM Booty 初階健身房女性翹臀指南 649$優惠持續中!https://www.cabfitness.com/?lang=zh-hant 中/英電子書含增肌原理、肌肉構造、八週菜單模組、動作講解、短影音教學與健身飲食QAs
✔️我的增肌減脂食譜書購買連結(第一本): 一碗搞定!增肌減脂健身餐https://www.books.com.tw/products/0010801832
✔️第二本(家常中式口味)May力體態:增肌減脂全攻略:健身一碗料理╳燃脂徒手運動 https://www.books.com.tw/products/0010836641?sloc=main Music by Insta Models - Do It Like You - https://thmatc.co/?l=CB31DD88
Music by Lillian Hepler - Baddie - https://thmatc.co/?l=B8218DCC
Music by Dylan Rockoff - Competition - https://thmatc.co/?l=424FE421
Music by Ryan Little - Think About You - https://thmatc.co/?l=5A5D69EC
Music by Todd Carey - Wanna Love - https://thmatc.co/?l=F42F4BDE
Music by Mark Generous - Meganne - https://thmatc.co/?l=039ECF7F
Music by dreamkiddo. - Take Care - https://thmatc.co/?l=43F53B82
Music by Ari Chi - Hot Honey - https://thmatc.co/?l=7298D968
limit calculator 在 Herman Yeung Youtube 的最佳貼文
電子書 (手稿e-book) (共261頁) (HK$199)
https://play.google.com/store/books/details?id=Fw_6DwAAQBAJ
Calculus 微積分系列︰ https://www.youtube.com/playlist?list=PLzDe9mOi1K8o2lveHTSM04WAhaGEZE7xB
適合 DSE 無讀 M1, M2,
但上左 U 之後要讀 Calculus 的同學收睇
由最 basic (中三的 level) 教到 pure maths 的 level,
現大致已有以下內容︰
(1) Concept of Differentiation 微分概念
(2) First Principle 基本原理
(3) Rule development 法則證明
(4) Trigonometric skills 三角學技術
(5) Limit 極限
(6) Sandwiches Theorem 迫近定理
(7) Leibniz Theorem 萊布尼茲定理
(8) Logarithmic differentiation 對數求導法
(9) Implicit differentiation 隱函數微分
(10) Differentiation of more than 2 variables 超過2個變數之微分
(11) Differentiation by Calculator 微分計數機功能
(12) Application of Differentiation - curve sketching 微分應用之曲線描繪
(13) Meaning of Integration 積分意義
(14) Rule of Integration 積分法則
(15) Trigonometric rule of Integration 三角積分法則
(16) Exponential, Logarithmic rule of integration 指數、對數積分法則
(17) Integration by Substitution 代換積分法
(18) Integration by Part 分部積分法
(19) Integration Skill : Partial Fraction 積分技術︰部分分式
(20) Integration by Trigonometric Substitution 三角代換積分法
(21) t-formula
(22) Reduction formula 歸約公式
(23) Limit + Summation = Integration 極限 + 連加 = 積分
(24) Application of Integration – Area 積分應用之求面積
(25) Application of Integration – Volume 積分應用之求體積
(26) Application of Integration – Length of curve 積分應用之求曲線長度
(27) Application of Integration – Surface area 積分應用之求表面積
(28) L’ Hospital rule 洛必達定理
(29) Fundamental Theorem of Integral Calculus 微積分基礎原理
(30) Calculus on Physics 微積分於物理上的應用
(31) Calculus on Economics 微積分於經濟上的應用
(32) Calculus on Archeology 微積分於考古學上的應用
之後不斷 updated,大家密切留意
------------------------------------------------------------------------------
Pure Maths 再現系列 Playlist: https://www.youtube.com/playlist?list=PLzDe9mOi1K8os36AdSf64ouFT_iKbQfSZ
------------------------------------------------------------------------------
Please subscribe 請訂閱︰
https://www.youtube.com/hermanyeung?sub_confirmation=1
------------------------------------------------------------------------------
HKDSE Mathematics 數學天書 訂購表格及方法︰
http://goo.gl/forms/NgqVAfMVB9
------------------------------------------------------------------------------
Blogger︰ https://goo.gl/SBmVOO
Facebook︰ https://www.facebook.com/hy.page
YouTube︰ https://www.youtube.com/HermanYeung
------------------------------------------------------------------------------
limit calculator 在 Herman Yeung Youtube 的精選貼文
特別鳴謝︰ John Hung 同學
------------------------------------------------------------------------------
Note download 筆記下載 : https://hermanutube.blogspot.hk/2016/01/youtube-pdf.html
Past Paper (香港公共圖書館): https://mmis.hkpl.gov.hk/web/guest/hkcee-and-hkale-papers-collection
------------------------------------------------------------------------------
M2 所有 videos 的 Playlist 可看: https://goo.gl/Eq0Efk
分類的 Playlist 可看:
https://goo.gl/X49Jds ……… M2 (Surd 根式)
https://goo.gl/NQiKs3 ……… M2 (Mathematical Induction 數學歸納法)
https://goo.gl/AQUc8X ……… M2 (Binomial Theorem 二項式定理)
https://goo.gl/sZRTyf ……… M2 (Trigonometry 三角學)
https://goo.gl/d6qf6M ……… M2 (e & Limit, e 及極限)
https://goo.gl/BzGaZ8 ……… M2 (Differentiation 微分)
https://goo.gl/S1kXAs ……… M2 (Tangent & Normal 切線及法線)
https://goo.gl/8TkRp6 ……… M2 (Rate of Change 改變率)
https://goo.gl/4y1lj8 ……… M2 (Maximum & Minimum 極大值及極小值)
https://goo.gl/8y48pq ……… M2 (Curve Sketching 曲線描繪)
https://goo.gl/l7deTJ ……… M2 (Integration 積分)
https://goo.gl/hgjfpQ ……… M2 (Application of Integration 積分應用)
https://goo.gl/Cf1pWe ……… M2 (Matrix 矩陣)
https://goo.gl/QwUZX4 ……… M2 (System of Linear Equations 線性方程組)
https://goo.gl/GFE7jx ……… M2 (2D & 3D Vector 平面&立體向量)
https://goo.gl/4VBqD9 ……… M2 (Tips Class & Last Hour)
------------------------------------------------------------------------------
Calculator program 計算機程式入法︰ https://www.youtube.com/playlist?list=PLzDe9mOi1K8pkk-O2oN_sdZy41f3rvHHY
HKDSE Mathematics 數學天書 訂購表格及方法︰ http://goo.gl/forms/NgqVAfMVB9
課程簡介︰ https://youtu.be/Rgm7yUVG9cY
------------------------------------------------------------------------------
DSE 數學 Core 天書 A: https://www.youtube.com/playlist?list=PLzDe9mOi1K8p2A7HMhwz4udhLJTQt9p2b
DSE 數學 Core 天書 B: https://www.youtube.com/playlist?list=PLzDe9mOi1K8rwG72J-TSOYyLyaqBVuvGV
DSE 數學 Core 天書 C: https://www.youtube.com/playlist?list=PLzDe9mOi1K8odfBVQx48_i9qe6II5OhtL
DSE 數學 Core 天書 D: https://www.youtube.com/playlist?list=PLzDe9mOi1K8rpwKQvMwGSscFQo9vNiJEs
DSE 數學 Core 天書 E: https://www.youtube.com/playlist?list=PLzDe9mOi1K8qapGxN7XDZHxTUm8UTItB0
DSE 數學 Core 天書 F: https://www.youtube.com/playlist?list=PLzDe9mOi1K8rGQfY7lSwPfEpri_y3XBqG
DSE 數學 Core 天書 G: https://www.youtube.com/playlist?list=PLzDe9mOi1K8p_vodcg2qObWmOUc_TxbFy
------------------------------------------------------------------------------
HKDSE 數學 Core 各天書 的內容︰ https://www.facebook.com/hy.publishing/photos/a.312736375489291.68655.198063650289898/933817946714461/?type=3&theater
HKDSE 數學 Core 特別快車班
28堂 (共7本天書) 完成整個 HKDSE 數學 Core
(中一至中六) 要考的所有課題,
適合任何考 HKDSE 的同學上課 (中四至中六都合適)
(p.s. Herman Yeung 所有天書,中英對照)
------------------------------------------------------------------------------
Please subscribe 請訂閱︰
https://www.youtube.com/hermanyeung?sub_confirmation=1
------------------------------------------------------------------------------
Blogger︰ https://hermanutube.blogspot.hk/2016/02/herman-yeung-main-menu.html
Facebook︰ https://www.facebook.com/hy.page
YouTube︰ https://www.youtube.com/HermanYeung
Instagram︰ https://www.instagram.com/hermanyeung_hy
------------------------------------------------------------------------------
limit calculator 在 slz37/Limit-Calculator: Takes in a function and limit ... - GitHub 的推薦與評價
Limit Calculator. This became bigger than I expected it to be, so I moved it out of my C# Practice repository into it's own. Takes in a function and limit ... ... <看更多>
limit calculator 在 Limits Calculator Technique | By EngineerProf PH | Facebook 的推薦與評價
Limits Calculator Technique. Nasa TikTok na si EngineerProf🧡 Will be uploading short math and engineering related video tutorials ... ... <看更多>
limit calculator 在 Limits Calculator Technique - YouTube 的推薦與評價
Calculator technique for evaluating Limits ( Differential Calculus) using Casio 991 es/570 es.To evaluate a limit as x approaches a certain ... ... <看更多>